forked from mariocasciaro/npm-workspace
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.14 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-workspace",
"description": "A cli utility to simplify link-ing and install-ing of npm packages locally.",
"version": "0.7.1",
"homepage": "https://github.com/mariocasciaro/npm-workspace",
"author": {
"name": "Mario Casciaro"
},
"repository": {
"type": "git",
"url": "git://github.com/mariocasciaro/npm-workspace"
},
"bugs": {
"url": "https://github.com/mariocasciaro/npm-workspace/issues"
},
"licenses": [
{
"type": "MIT",
"url": "https://github.com/mariocasciaro/npm-workspace/blob/master/LICENSE"
}
],
"scripts": {
"test": "node_modules/mocha/bin/_mocha test/*.js -t 30000 --reporter spec"
},
"bin": {
"npm-workspace": "bin/npm-workspace"
},
"preferGlobal": true,
"dependencies": {
"commander": "^2.5.0",
"lodash": "^3.10.1",
"mocha": "^2.0.1",
"ncp": "^2.0.0",
"rimraf": "^2.2.8",
"spawned": "^0.1.3",
"through2": "^2.0.0",
"when": "^3.5.2"
},
"devDependencies": {
"chai": "^3.4.1",
"mocha": "^2.0.1"
},
"keywords": [
"npm",
"link",
"dependencies",
"peerDependencies",
"workspace",
"automatic"
]
}