forked from lerna/lerna
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.48 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
{
"name": "lerna",
"version": "2.0.0-beta.24",
"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",
"test": "mocha",
"ci": "npm run lint && 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",
"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",
"object-assign": "^4.0.1",
"object-assign-sorted": "^1.0.0",
"pad": "^1.0.0",
"path-exists": "^2.1.0",
"progress": "^1.1.8",
"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",
"cpr": "^1.1.1",
"eslint": "^2.3.0",
"mocha": "^2.4.5"
}
}