-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
49 lines (49 loc) · 1.76 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
{
"name": "ui-primitives",
"version": "25.8.0",
"description": "UI primitives for sharing between platforms in Design System Team projects",
"keywords": [
"design",
"ui",
"icons",
"svg"
],
"repository": {
"type": "git",
"url": "git+https://github.com/core-ds/ui-primitives.git"
},
"author": "Design System Team",
"license": "MIT",
"scripts": {
"commitmsg": "commitlint -e",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s",
"github-release": "conventional-github-releaser -p angular",
"release-patch": "npm version patch -m 'chore(*): patch version[skip ci]'",
"release-minor": "npm version minor -m 'chore(*): minor version[skip ci]'",
"release-major": "npm version major -m 'chore(*): major version[skip ci]'",
"test": "NODE_ENV=test nyc --reporter=lcov --reporter=text mocha ./utils/**/*.spec.js",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"version": "git fetch --tags && npm run changelog && git add CHANGELOG.md",
"postversion": "npm run pub",
"pub": "./utils/publish.sh",
"ci": "./utils/ci.sh",
"update-bb-mirror": "git push -f https://{userName}@git.moscow.alfaintra.net/scm/ef/ui-primitives.git"
},
"devDependencies": {
"@commitlint/cli": "5.2.0",
"@commitlint/config-conventional": "5.1.3",
"conventional-changelog-cli": "1.3.5",
"conventional-github-releaser": "2.0.0",
"coveralls": "3.0.0",
"git-diff-tags": "1.0.0",
"mocha": "5.0.0",
"nyc": "11.4.1",
"posthtml": "0.11.2",
"svgo": "1.0.3"
},
"nyc": {
"exclude": [
"**/*.spec.js"
]
}
}