-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1006 Bytes
/
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
{
"name": "flatten-deps",
"version": "0.2.2",
"description": "Moves node dependencies up the tree to prevent long paths (Windows limits length to 260)",
"main": "flatten.js",
"author": "Tomas Ruzicka <[email protected]> (https://github.com/lezuse)",
"license": "MIT",
"homepage": "https://github.com/LeZuse/node-flatten-deps",
"repository": {
"type": "git",
"url": "https://github.com/LeZuse/node-flatten-deps"
},
"bugs": "https://github.com/LeZuse/node-flatten-deps/issues",
"keywords": [
"flatten",
"dependencies",
"modules",
"node_modules",
"dedupe",
"shrinkwrap"
],
"bin": {
"flatten-deps": "./bin/flatten-deps"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"dependencies": {
"glob": "~4.0.5",
"season": "~2.0.0",
"rimraf": "~2.2.8",
"coffee-script": "~1.7.1"
},
"engines": {
"node": ">=0.10.0"
},
"publishConfig": {
"registry": "http://registry.npmjs.org/"
}
}