-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
56 lines (56 loc) · 1.88 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
50
51
52
53
54
55
56
{
"name": "ovh-ui-kit-bs",
"version": "4.2.0",
"description": "A bootstrap theme for the OVH managers, based on ovh-ui-kit.",
"license": "BSD-3-Clause",
"homepage": "https://ovh.github.io/ovh-ui-kit-bs/",
"author": "OVH SAS",
"files": [
"dist"
],
"main": "./dist/js/bootstrap.js",
"style": "./dist/css/oui-bs3.css",
"bugs": {
"url": "https://github.com/ovh/ovh-ui-kit-bs/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/ovh/ovh-ui-kit-bs.git"
},
"scripts": {
"build": "run-s clean dist docs",
"clean": "rimraf dist docs/assets",
"copy": "run-p copy:*",
"copy:fonts": "cpx \"src/fonts/**/*\" \"dist/fonts\"",
"copy:variables": "cpx \"src/less/{bootstrap/_variables.less,oui/tokens/**/*,oui/_tokens.less,oui/variables/**/*,oui/_variables.less}\" \"dist/less/\"",
"copy:bootstrap": "cpx \"node_modules/bootstrap/dist/{fonts/**/*,js/bootstrap.*}\" \"dist/\"",
"dist": "run-p dist:*",
"dist:less": "lessc --remcalc --clean-css \"src/index.less\" \"dist/css/oui-bs3.css\"",
"dist:copy": "yarn copy",
"docs": "cpx \"dist/{css,fonts,js}/*\" \"docs/\"",
"preversion": "yarn test",
"version": "yarn build && npx conventional-changelog-cli -p angular -i CHANGELOG.md -s && git add .",
"postversion": "git push && git push --tags",
"start": "open-cli docs/index.html",
"test": "stylelint \"src/**/*.less\""
},
"devDependencies": {
"bootstrap": "^3.4.1",
"cpx": "^1.5.0",
"less": "^3.11.2",
"less-plugin-clean-css": "^1.5.1",
"less-plugin-remcalc": "^0.1.0",
"npm-run-all": "^4.1.5",
"opn-cli": "^5.0.0",
"rimraf": "^3.0.2",
"stylelint": "^13.13.1",
"stylelint-config-standard": "^22.0.0"
},
"resolutions": {
"clean-css": "^4.1.11",
"glob-parent": "^6.0.1",
"set-value": "^2.0.1",
"trim-newlines": "^3.0.1",
"yargs-parser": "^20.2.9"
}
}