forked from yuantongkang/lock-diff
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 716 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 716 Bytes
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
{
"name": "lock-diff",
"version": "0.7.0",
"description": "a diff for package-lock.json files",
"repository": {
"type": "git",
"url": "git@github.com:mayavera/lock-diff.git"
},
"bin": "./bin/lock-diff.js",
"main": "lib/index.js",
"author": "Maya Vera <maya@mayavera.me> (https://mayavera.me/)",
"license": "MIT",
"scripts": {
"start": "./bin/lock-diff.js",
"lint": "eslint .",
"test": "jest"
},
"dependencies": {
"chalk": "^3.0.0",
"commander": "^4.0.0",
"semver": "^6.3.0",
"table": "^5.4.6"
},
"devDependencies": {
"eslint": "^6.6.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-plugin-import": "^2.18.2",
"jest": "^24.9.0"
}
}