-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
44 lines (44 loc) · 1.08 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
{
"name": "depcheck-web",
"version": "0.0.1",
"description": "Post depcheck report to web service.",
"author": "Junle Li <[email protected]>",
"license": "MIT",
"main": "src/index.js",
"bin": {
"depcheck-web": "bin/depcheck-web"
},
"scripts": {
"test": "babel-node ./test/cli.js",
"lint": "eslint src/",
"compile": "babel src/ -d dist/",
"depcheck": "depcheck",
"depcheck-web": "depcheck --json | node ./bin/depcheck-web",
"prepublish": "npm run compile"
},
"repository": {
"type": "git",
"url": "git+https://github.com/depcheck/depcheck-web.git"
},
"keywords": [
"depcheck",
"web",
"report"
],
"dependencies": {
"superagent": "^1.4.0"
},
"devDependencies": {
"babel-cli": "^6.2.0",
"babel-eslint": "^4.1.5",
"babel-preset-es2015": "^6.1.18",
"babel-preset-stage-2": "^6.1.18",
"blue-tape": "^0.1.10",
"depcheck": "^0.5.10",
"eslint": "^1.10.1",
"eslint-config-airbnb": "^1.0.0",
"patch-version": "^0.1.1",
"string-to-stream": "^1.0.1",
"superagent-mocker": "^0.3.0"
}
}