forked from enactjs/enact
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
30 lines (30 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
{
"name": "enact",
"version": "3.4.11-test",
"description": "Monorepo for all Enact front end libraries.",
"private": true,
"scripts": {
"lerna": "lerna",
"bootstrap": "lerna bootstrap --concurrency 1",
"bootstrap-link": "npm run link-all && npm run interlink",
"interlink": "lerna link --loglevel error",
"link-all": "lerna --concurrency 1 exec -- npm --loglevel error --no-package-lock link",
"unlink-all": "lerna --concurrency 1 exec -- npm --loglevel error --no-package-lock unlink",
"publish": "lerna publish --skip-npm --skip-git",
"lint": "lerna --concurrency 1 run lint",
"test": "lerna --concurrency 1 run test",
"test-ss": "lerna --concurrency 1 run test-ss",
"test-ui": "lerna --concurrency 1 run test-ui",
"clean": "lerna clean",
"validate-docs": "validate-docs --strict --standalone --path packages"
},
"license": "Apache-2.0",
"eslintConfig": {
"extends": "enact-proxy/strict"
},
"devDependencies": {
"@enact/docs-utils": "^0.3.3",
"eslint-config-enact-proxy": "^1.0.0",
"lerna": "^2.11.0"
}
}