-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.35 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.35 KB
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
{
"name": "artemis",
"version": "1.0.0",
"description": "tracking user behavior",
"main": "server/index.js",
"scripts": {
"lint": "eslint server --ignore-path node_modules/",
"test": "cross-env NODE_ENV=testing NODE_CONFIG_DIR=./server/config nyc --reporter=html --reporter=text mocha",
"test:w": "cross-env NODE_ENV=testing NODE_CONFIG_DIR=./server/config mocha --watch",
"example": "http-server ./example -p 9999",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"postinstall": "cd server && npm install && cd ../client && npm install"
},
"author": "",
"license": "ISC",
"devDependencies": {
"babel-plugin-transform-es2015-modules-commonjs": "^6.23.0",
"babel-plugin-transform-es2015-spread": "^6.22.0",
"babel-preset-stage-0": "^6.22.0",
"chai": "^3.5.0",
"chai-http": "^3.0.0",
"coveralls": "^2.11.15",
"cross-env": "^3.1.3",
"eslint": "^3.12.2",
"eslint-config-airbnb-base": "^11.0.0",
"eslint-config-standard": "^6.2.1",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-promise": "^3.4.0",
"eslint-plugin-standard": "^2.0.1",
"http-server": "^0.9.0",
"js-yaml": "^3.8.2",
"mocha": "^3.2.0",
"mocha-lcov-reporter": "^1.2.0",
"nyc": "^10.0.0",
"sinon": "^2.1.0"
},
"dependencies": {
"babel-register": "^6.22.0",
"config": "^1.25.1"
}
}