forked from oruga-ui/oruga
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 2.25 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": "root",
"version": "0.5.10",
"homepage": "https://oruga.io",
"description": "UI components for Vue.js and CSS framework agnostic",
"author": "Walter Tommasi <tommsi20@gmail.com>",
"license": "MIT",
"scripts": {
"bootstrap": "lerna bootstrap",
"test:oruga": "lerna run test --scope @oruga-ui/oruga",
"test:oruga-next": "lerna run test --scope @oruga-ui/oruga-next",
"test:ts:oruga-next": "lerna run test:ts --scope @oruga-ui/oruga-next",
"test:watch:oruga-next": "lerna run test:watch --scope @oruga-ui/oruga-next",
"ci:oruga": "lerna run ci --scope @oruga-ui/oruga",
"lint:oruga": "lerna run lint --scope @oruga-ui/oruga",
"lint:fix:oruga": "lerna run lint:fix --scope @oruga-ui/oruga",
"lint:staged:oruga": "lerna run lint:staged --scope @oruga-ui/oruga",
"unit:oruga": "lerna run unit --scope @oruga-ui/oruga",
"build:lib:oruga": "lerna run build:lib --parallel --scope @oruga-ui/oruga",
"build:lib:watch:oruga": "lerna run build:lib:watch --parallel --scope @oruga-ui/oruga",
"build:docs:oruga": "lerna run docs:build --scope @oruga-ui/docs",
"build:docs:hacktoberfest": "lerna run docs:hacktoberfest --scope @oruga-ui/docs",
"build:docs:watch:oruga": "lerna run docs:dev --parallel --scope @oruga-ui/docs",
"build:docs-next:oruga": "lerna run docs:build --parallel --scope @oruga-ui/docs-next",
"build:docs-next:watch:oruga": "lerna run docs:dev --parallel --scope @oruga-ui/docs-next",
"build:lib:oruga-next": "lerna run build:lib --parallel --scope @oruga-ui/oruga-next",
"build:lib:watch:oruga-next": "lerna run build:lib:watch --parallel --scope @oruga-ui/oruga-next",
"publish:lib:oruga": "lerna run publish:lib --scope @oruga-ui/oruga",
"publish:lib:oruga-next": "lerna run publish:lib --scope @oruga-ui/oruga-next",
"test:all": "lerna run test --stream",
"version": "node .scripts/config-sync && git add . && conventional-changelog -p angular -i CHANGELOG.md -s && node .scripts/wait-confirm && git add CHANGELOG.md",
"postversion": "echo \"You can now publish your tag with 'git push --follow-tags'\""
},
"devDependencies": {
"conventional-changelog": "^3.1.25",
"conventional-changelog-cli": "^2.2.2",
"lerna": "^3.22.1",
"replace-in-file": "^6.3.5"
}
}