forked from FelixHenninger/lab.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.33 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
{
"private": true,
"dependencies": {},
"devDependencies": {
"lerna": "^3.0.0-beta.21",
"onchange": "^7.1.0"
},
"scripts": {
"bootstrap": "lerna bootstrap",
"bootstrap:ci": "lerna bootstrap --npm-ci-mode",
"build:docs": "cd docs && make html",
"clean:docs": "cd docs && make clean",
"clean:modules": "lerna clean",
"watch:docs": "onchange 'docs/**/*.rst' 'docs/**/*.py' -- npm run build:docs"
},
"workspaces": {
"packages": [
"packages/*"
],
"nohoist": [
"lab.js/babel-loader",
"lab.js/chai",
"lab.js/chai/**",
"lab.js/es6-promise",
"lab.js/es6-promise/**",
"lab.js/karma",
"lab.js/karma-coverage",
"lab.js/karma-coverage/**",
"lab.js/karma-chrome-launcher",
"lab.js/karma-chrome-launcher/**",
"lab.js/karma-mocha",
"lab.js/karma-mocha/**",
"lab.js/karma-sauce-launcher",
"lab.js/karma-sauce-launcher/**",
"lab.js/mocha",
"lab.js/mocha/**",
"lab.js/lodash",
"lab.js/sinon",
"lab.js/sinon/**",
"lab.js/webpack",
"lab.js/webpack/**",
"lab.js.builder/bootstrap",
"**/react",
"**/react/**",
"**/react-dom",
"**/react-dom/**",
"lab.js.builder/react-scripts",
"lab.js.builder/react-scripts/**",
"lab.js.website/bootstrap"
]
}
}