forked from learn-javascript-courses/rejection
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 1.08 KB
/
package.json
File metadata and controls
35 lines (35 loc) · 1.08 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
{
"name": "rejection",
"version": "1.0.0",
"main": "index.js",
"repository": "git@github.com:warrenv/rejection.git",
"author": "warren vosper <straydogsw@gmail.com>",
"license": "MIT",
"scripts": {
"lint": "eslint --ignore-path .gitignore -- .",
"test": "NODE_ENV=test nyc --all --include 'app/**/*.js' node test.js | faucet",
"test:cov": "NODE_ENV=test nyc report --all --reporter=lcov --reporter=text-summary",
"test:clean": "rimraf ./coverage"
},
"devDependencies": {
"css-loader": "^0.28.7",
"eslint": "^4.6.1",
"eslint-config-standard": "^10.2.1",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-node": "^5.1.1",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-standard": "^3.0.1",
"extract-text-webpack-plugin": "^3.0.0",
"faucet": "^0.0.1",
"html-webpack-plugin": "^2.30.1",
"nyc": "^11.2.1",
"path": "^0.12.7",
"sinon": "^3.2.1",
"style-loader": "^0.18.2",
"tape": "^4.8.0",
"tape-promise": "^2.0.1",
"tape-runner": "^0.3.0",
"webpack": "^3.5.6",
"webpack-dev-server": "^2.7.1"
}
}