-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
34 lines (34 loc) · 1.06 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
{
"name": "check-dep-version",
"version": "0.0.1",
"description": "Check versions of dependencies in node_modules",
"main": "index.js",
"scripts": {
"test": "NODE_ENV=test ./node_modules/.bin/_mocha --timeout 20000 --require should --reporter spec",
"test-cov": "NODE_ENV=test node ./node_modules/.bin/istanbul cover ./node_modules/.bin/_mocha -- --require should --timeout 20000",
"test-travis": "NODE_ENV=test node ./node_modules/.bin/istanbul cover ./node_modules/.bin/_mocha --report lcovonly -- --require should --timeout 20000"
},
"author": "LingyuCoder",
"license": "MIT",
"devDependencies": {
"istanbul": "~0.4.0",
"mocha": "~2.3.3",
"should": "^8.0.2"
},
"repository": {
"type": "git",
"url": "https://github.com/LingyuCoder/check-dep-version"
},
"keywords": [],
"bugs": {
"url": "https://github.com/LingyuCoder/check-dep-version/issues"
},
"publishConfig": {
"registry": "http://registry.npmjs.org/"
},
"dependencies": {
"co": "^4.6.0",
"lodash": "^3.10.1",
"semver": "^5.1.0"
}
}