-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 2.04 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
{
"name": "bootstrap-scss-plugins",
"version": "1.1.7",
"description": "A suite of SCSS plugins used for developing Bootstrap 4 themes and sites.",
"files": [
"scss/"
],
"scripts": {
"lint": "npm run lint:styles && npm run lint:scripts",
"lint:styles": "npx gulp lint",
"lint:styles:fix": "npx gulp fix",
"lint:scripts": "npx eslint --ext .js .",
"lint:scripts:fix": "npx eslint --ext .js . --fix",
"test": "npm run test:compile",
"test:compile": "npx gulp compile",
"prerelease": "npm run lint && npm test",
"release": "npx standard-version",
"commit": "npx git cz",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/coldfrontlabs/bootstrap-scss-plugins.git"
},
"keywords": [
"bootstrap",
"scss",
"sass"
],
"author": "Coldfront Labs Inc.",
"license": "ISC",
"bugs": {
"url": "https://github.com/coldfrontlabs/bootstrap-scss-plugins/issues"
},
"homepage": "https://github.com/coldfrontlabs/bootstrap-scss-plugins#readme",
"devDependencies": {
"@babel/core": "^7.11.6",
"@babel/preset-env": "^7.11.5",
"@babel/register": "^7.11.5",
"@coldfrontlabs/gulp-templates": "^4.0.1",
"@commitlint/cli": "^13.1.0",
"@commitlint/config-conventional": "^13.1.0",
"bootstrap": "^4.5.2",
"commitizen": "^4.2.1",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^7.8.1",
"eslint-config-prettier": "^8.3.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-promise": "^5.1.0",
"eslint-plugin-standard": "^5.0.0",
"gulp": "~4.0.0",
"gulp-eslint": "~6.0.0",
"husky": "^7.0.2",
"prettier": "^2.1.1",
"standard-version": "^9.0.0",
"stylelint": "^13.7.0",
"stylelint-config-coldfront": "^2.0.1"
},
"peerDependencies": {
"bootstrap": ">=4.3.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}