-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 1.2 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
{
"name": "abus-root",
"scripts": {
"watch": "tsc -b --watch packages",
"test": "mocha --exit --colors --ui livedoc-mocha --reporter livedoc-mocha/livedoc-spec -O \"detailLevel=+summary+list+headers\" --recursive packages/**/*.Spec.js",
"test-spec": "mocha --colors --ui livedoc-mocha --reporter livedoc-mocha/livedoc-spec -O \"detailLevel=spec+summary+list\" --recursive packages/**/*.Spec.js",
"release": "yarn clean && yarn build && yarn release-no-build",
"release-no-build": "lerna run pack",
"clean": "lerna run clean",
"alpha-patch": "lerna version prerelease --no-git-tag-version --no-push",
"build": "tsc -v && tsc -b packages",
"start-sample": "cd packages/abus-react-sample && npm run start"
},
"workspaces": {
"packages": [
"packages/*"
],
"nohoist": [
"**/mocha"
]
},
"private": true,
"devDependencies": {
"@types/chai": "^4.1.7",
"@types/diff": "3.5.2",
"@types/mocha": "^5.2.5",
"@types/node": "^10.12.10",
"chai": "^4.2.0",
"lerna": "^3.7.1",
"livedoc-mocha": "0.4.0-beta-7",
"mocha": "^5.2.0",
"rimraf": "^2.6.2",
"tslint": "^5.11.0",
"typescript": "^3.4.5",
"uglify-js": "^3.4.9"
}
}