-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
47 lines (47 loc) · 1.13 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
{
"name": "presence-tracker",
"version": "1.6.1",
"description": "Simple presence tracker.",
"bin": {
"presence-tracker": "dist/bin/cli.js"
},
"scripts": {
"clean": "rm -rf dist/*/",
"build": "babel -d dist/src src && babel -d dist/bin bin",
"prepublish": "npm run clean && npm run build",
"test": "standard bin/* src/*"
},
"author": "Matjaž Lipuš <[email protected]>",
"license": "ISC",
"repository": {
"type": "git",
"url": "git://github.com/matjaz/presence-tracker.git"
},
"engines": {
"node": ">=4"
},
"dependencies": {
"arpscan": "^0.1.0",
"babel-polyfill": "^6.9.1",
"bluebird": "^3.4.0",
"json-store": "0.0.1",
"kcors": "^1.2.1",
"koa": "^2.0.0-alpha.3",
"koa-66": "^0.8.5",
"koa-body-parser": "^1.1.2",
"koa-convert": "^1.2.0",
"lodash.difference": "^4.5.0",
"ping": "^0.1.10"
},
"devDependencies": {
"babel-cli": "^6.11.4",
"babel-eslint": "^6.1.1",
"babel-preset-es2015": "^6.9.0",
"babel-preset-stage-0": "^6.5.0",
"eslint": "^3.3.0",
"standard": "^7.1.2"
},
"standard": {
"parser": "babel-eslint"
}
}