-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 1.07 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
{
"devDependencies": {
"lerna": "^3.13.4"
},
"scripts": {
"test": "lerna run test-critical",
"test-all": "lerna run test-all",
"bootstrap": "lerna bootstrap --use-workspaces",
"docs": "lerna run docs",
"clean": "lerna clean --yes; lerna run clean; rm -rf node_modules package-lock.json; find . -name \"node_modules\" -exec rm -rf '{}' +; ",
"build": "lerna run build",
"all": "npm run clean ; npm install ; npm run build ; npm run doc ; npm test",
"test-clone": "rm -rf ../cli-driver-test; mkdir ../cli-driver-test; cd ../cli-driver-test; git clone ../cli-driver/.git; cd cli-driver ; yarn install ; yarn test",
"test-nobuild": "lerna run test-nobuild",
"test-nobuild-nolerna": "cd packages/cli-driver ; npm run test-nobuild && cd ../sample-app-using-inquirer && npm run test-nobuild",
"prepublish": "npm run build"
},
"workspaces": {
"packages": [
"packages/*"
],
"nohoist": [
"**/jasmine",
"**/jasmine/**",
"**/node-pty",
"**/node-pty/**",
"**/tsconfig-paths",
"**/tsconfig-paths/**"
]
},
"private": true,
"dependencies": {}
}