-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathpackage.json
51 lines (51 loc) · 1.16 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
{
"name": "npm-git-lock",
"version": "3.6.0",
"description": "A CLI tool to lock all node_modules dependencies to a separate git repository.",
"main": "cli.js",
"repository": {
"type": "git",
"url": "git://github.com/bestander/npm-git-lock.git"
},
"dependencies": {
"del": "^1.1.1",
"es6-promise": "^3.0.2",
"es6-promisify": "^1.1.1",
"git-promise": "^0.2.0",
"json-stable-stringify": "^1.0.0",
"lodash": "^3.10.1",
"loglevel": "^1.2.0",
"optimist": "^0.6.1",
"shelljs": "^0.5.3",
"string.prototype.startswith": "^0.2.0"
},
"devDependencies": {
"babel": "^5.0.0",
"chai": "^2.1.2",
"mocha": "^2.2.1",
"rewire": "^2.3.4",
"semver": "^5.1.0"
},
"bundledDependencies": [
"del",
"es6-promise",
"es6-promisify",
"git-promise",
"json-stable-stringify",
"lodash",
"loglevel",
"optimist",
"shelljs"
],
"scripts": {
"test": "mocha --compilers es6:babel/register",
"compile": "babel -d lib/ src/",
"prepublish": "npm run compile",
"pack": "npm pack"
},
"bin": {
"npm-git-lock": "cli.js"
},
"author": "Konstantin Raev",
"license": "MIT"
}