This repository has been archived by the owner on Aug 28, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.58 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
{
"name": "lerna-tools",
"version": "1.0.0",
"main": "lib/index.js",
"author": "Greg Bergé <[email protected]>",
"keywords": [
"lerna",
"lernajs",
"babel",
"build",
"watch"
],
"license": "MIT",
"scripts": {
"build": "rm -rf lib/ && NODE_ENV=production babel src -d lib",
"ci": "yarn lint && yarn test",
"format": "prettier --write \"src/**/*.js\"",
"lint": "eslint .",
"release": "mversion `conventional-recommended-bump -p angular` -m",
"test": "jest --runInBand --forceExit",
"prepublishOnly": "yarn run build"
},
"bin": {
"lerna-build": "lib/build.js",
"lerna-watch": "lib/watch.js"
},
"peerDependencies": {
"babel-core": "^6.26.0 | ^7.0.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-eslint": "^8.0.1",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.6.0",
"conventional-github-releaser": "^1.1.12",
"conventional-recommended-bump": "^1.0.2",
"eslint": "^4.8.0",
"eslint-config-airbnb-base": "^12.0.1",
"eslint-config-prettier": "^2.6.0",
"eslint-plugin-import": "^2.7.0",
"jest": "^21.2.1",
"mversion": "^1.10.1",
"prettier": "^1.7.3"
},
"dependencies": {
"chalk": "^2.1.0",
"glob": "^7.1.2",
"micromatch": "^3.1.0",
"mkdirp": "^0.5.1",
"string-length": "^2.0.0"
},
"jest": {
"setupFiles": [
"<rootDir>/tests/setup.js"
],
"watchPathIgnorePatterns": [
"<rootDir>/tests/sandbox"
]
}
}