-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
99 lines (99 loc) · 3.15 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"name": "bs-stepper",
"version": "1.7.0",
"description": "A stepper for Bootstrap 4",
"author": "Johann-S <[email protected]>",
"main": "dist/js/bs-stepper.js",
"types": "bs-stepper.d.ts",
"bugs": {
"url": "https://github.com/Johann-S/bs-stepper/issues"
},
"engines": {
"node": ">=8"
},
"scripts": {
"browserstack": "cross-env browser=true karma start tests/karma.conf.js",
"build": "npm run build-js && npm run build-css",
"build-js": "rollup -c && rollup -c --environment PROD",
"build-css": "postcss src/css/bs-stepper.css -m --use autoprefixer -d dist/css && npm run css-minify",
"css-minify": "cleancss --level 1 --format breaksWith=lf --source-map --source-map-inline-sources --output dist/css/bs-stepper.min.css dist/css/bs-stepper.css",
"dev": "rollup --environment DEV -c -w",
"test:unit:dev": "cross-env dev=true karma start tests/karma.conf.js",
"test:unit": "karma start tests/karma.conf.js",
"test": "npm run standard && npm run css-lint && npm run test:unit && npm run build",
"standard": "standard src/js/*.js",
"css-lint": "stylelint src/css/bs-stepper.css",
"deploy": "gh-pages -d docs",
"docs-build": "shx mkdir -p docs/dist/ && shx cp -r dist/css/ docs/dist/ && shx cp -r dist/js/ docs/dist/",
"docs-serve": "http-server docs/ -c-1 -o",
"changelog": "standard-version -a",
"coveralls": "shx cat tests/dist/coverage/lcov.info | coveralls"
},
"files": [
"dist/js/*.{js,map}",
"dist/css/*.{css,map}",
"bs-stepper.d.ts",
"CHANGELOG.md"
],
"keywords": [
"bootstrap",
"bootstrap 4",
"vanillajs",
"react",
"angular",
"stepper"
],
"homepage": "https://github.com/Johann-S/bs-stepper",
"repository": {
"type": "git",
"url": "git+https://github.com/Johann-S/bs-stepper.git"
},
"contributors": [
"Martijn Cuppens <[email protected]>",
"Lausselloic <[email protected]>",
"XhmikosR <[email protected]>"
],
"license": "MIT",
"dependencies": {},
"devDependencies": {
"@babel/core": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"autoprefixer": "^9.6.1",
"bootstrap": "^4.3.1",
"clean-css-cli": "^4.3.0",
"coveralls": "^3.0.5",
"cross-env": "^5.2.0",
"gh-pages": "^2.0.1",
"http-server": "^0.11.1",
"ip": "^1.1.5",
"jasmine-core": "^3.4.0",
"karma": "^4.2.0",
"karma-browserstack-launcher": "^1.5.1",
"karma-chrome-launcher": "^3.0.0",
"karma-coverage-istanbul-reporter": "^2.0.6",
"karma-jasmine": "^2.0.1",
"karma-jasmine-html-reporter": "^1.4.2",
"karma-rollup-preprocessor": "^7.0.2",
"postcss-cli": "^6.1.3",
"rollup": "^1.17.0",
"rollup-plugin-babel": "^4.3.3",
"rollup-plugin-istanbul": "^2.0.1",
"rollup-plugin-terser": "^5.1.1",
"shx": "^0.3.2",
"standard": "^13.1.0",
"standard-version": "^6.0.1",
"stylelint": "^10.1.0",
"stylelint-config-twbs-bootstrap": "^0.4.0"
},
"standard": {
"ignore": [
"dist/js/*.js"
]
},
"standard-version": {
"scripts": {
"postbump": "node scripts/bump-css.js && npm run build",
"precommit": "node scripts/restore-css.js"
}
}
}