-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
40 lines (40 loc) · 1.44 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
{
"name": "o-rango-components",
"private": true,
"scripts": {
"generate": "node ./scripts/runners/generator.js",
"init": "lerna bootstrap",
"clean": "lerna run -- clean",
"test:ci": "lerna --concurrency 1 exec npm run test:ci",
"test": "lerna exec npm run test",
"coverage": "codecov",
"build": "lerna --concurrency 1 exec npm run build",
"format": "lerna run -- format",
"lint": "lerna run -- lint",
"publish:master": "lerna publish --conventional-commits --cd-version=prerelease --yes --npm-tag=unstable --preid=unstable --message 'ci: publish [ci skip]'",
"publish:beta": "lerna publish --conventional-commits --cd-version=prerelease --yes --npm-tag=beta --preid=beta --message 'ci: publish [ci skip] '",
"publish:release": "lerna publish --conventional-commits --cd-version=patch --yes --message 'ci: publish [ci skip]'"
},
"devDependencies": {
"@commitlint/cli": "^8.1.0",
"@commitlint/config-conventional": "^8.1.0",
"codecov": "^3.1.0",
"husky": "^1.1.2",
"lerna": "^3.4.3",
"@types/jest": "^23.3.1",
"autoprefixer": "^9.0.2",
"chalk": "^2.4.1",
"minimist": "^1.2.0",
"node-emoji": "^1.8.1",
"through2": "^2.0.3",
"recursive-copy": "^2.0.9",
"validate-element-name": "^2.1.1",
"minimist-options": "^3.0.2"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"preinstall": "npm config set package-lock false"
}