-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
72 lines (72 loc) · 1.44 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "analyze-deps",
"version": "2.0.0",
"description": "Compare dependencies in package.json to the latest available versions.",
"main": "src/index.js",
"repository": {
"type": "git",
"url": "https://github.com/moroshko/analyze-deps.git"
},
"author": "Misha Moroshko <michael.moroshko@gmail.com>",
"scripts": {
"lint": "eslint src test",
"test": "nyc mocha test",
"build": "npm run lint && npm test",
"preversion": "npm run build",
"postversion": "git push && git push --tags"
},
"dependencies": {
"lodash.mapvalues": "^4.6.0",
"package-json": "^2.4.0",
"promise-all": "^1.0.0",
"semver": "^5.3.0"
},
"devDependencies": {
"bithound": "^1.7.0",
"chai": "^3.5.0",
"chai-as-promised": "^6.0.0",
"eslint": "^3.8.1",
"mocha": "^3.1.2",
"mock-require": "^1.3.0",
"nyc": "^8.3.2"
},
"files": [
"src"
],
"keywords": [
"dependency",
"dependencies",
"devDependencies",
"version",
"versions",
"pkg",
"package",
"packages",
"package.json",
"npm",
"check",
"compare",
"analyze",
"analyse",
"outdated",
"latest"
],
"nyc": {
"lines": 100,
"statements": 100,
"functions": 100,
"branches": 100,
"include": [
"src/*.js"
],
"exclude": [
"test/**/*.js"
],
"reporter": [
"lcov",
"text-summary"
],
"check-coverage": true
},
"license": "MIT"
}