forked from lerna/lerna
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 1.86 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
{
"name": "lerna",
"version": "2.0.0-beta.30",
"description": "Tool for managing JavaScript projects with multiple packages",
"main": "lib/index.js",
"scripts": {
"build": "babel src -d lib",
"dev": "babel -w src -d lib",
"lint": "eslint src test",
"fix": "eslint src test --fix",
"test": "mocha -t 5000",
"ci": "npm run lint && cross-env DEBUG_CALLS=true npm run test",
"prepublish": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lerna/lerna.git"
},
"author": "Sebastian McKenzie <sebmck@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/lerna/lerna/issues"
},
"homepage": "https://lernajs.io/",
"dependencies": {
"async": "^1.5.0",
"chalk": "^1.1.1",
"cmd-shim": "^2.0.2",
"command-join": "^1.1.1",
"cross-spawn": "^4.0.0",
"inquirer": "^0.12.0",
"lodash.find": "^4.3.0",
"lodash.unionwith": "^4.2.0",
"meow": "^3.7.0",
"minimatch": "^3.0.0",
"mkdirp": "^0.5.1",
"normalize-path": "^2.0.1",
"object-assign": "^4.0.1",
"object-assign-sorted": "^1.0.0",
"pad": "^1.0.0",
"path-exists": "^2.1.0",
"progress": "^1.1.8",
"read-cmd-shim": "^1.0.1",
"rimraf": "^2.4.4",
"semver": "^5.1.0",
"signal-exit": "^2.1.2",
"sync-exec": "^0.6.2"
},
"bin": {
"lerna": "./bin/lerna.js"
},
"devDependencies": {
"babel-cli": "^6.7.5",
"babel-eslint": "^6.0.2",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-preset-es2015": "^6.6.0",
"babel-register": "^6.7.2",
"cross-env": "^1.0.8",
"eslint": "^2.3.0",
"eslint-config-babel": "^1.0.1",
"eslint-plugin-babel": "^3.3.0",
"eslint-plugin-flow-vars": "^0.5.0",
"fs-extra": "^0.30.0",
"mocha": "^2.4.5",
"normalize-newline": "^2.1.0"
}
}