This repository was archived by the owner on Jan 20, 2024. It is now read-only.
forked from jacobp100/css-class-generator
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.34 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.34 KB
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
{
"name": "@gorebel/css-class-generator",
"version": "2.0.0",
"description": "Generates a sequential, valid CSS class, generating the next smallest class names possible",
"main": "src/index.js",
"dependencies": {},
"devDependencies": {
"@commitlint/cli": "^7.2.1",
"@commitlint/config-conventional": "^7.1.2",
"@commitlint/prompt": "^7.2.1",
"ava": "^0.25.0",
"commitizen": "^3.0.4",
"eslint": "^5.8.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.14.0",
"husky": "^1.1.3",
"lint-staged": "^8.0.4",
"standard-version": "^4.4.0"
},
"scripts": {
"test": "ava -T 60s",
"cz": "git-cz",
"release": "standard-version"
},
"keywords": [
"css",
"class",
"classname",
"name",
"generator",
"minify",
"unique",
"id"
],
"author": "Jacob Parker",
"license": "ISC",
"repository": {
"type": "git",
"url": "https://github.com/Rebelmail/css-class-generator"
},
"lint-staged": {
"*.js": [
"eslint --fix",
"git add"
]
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"config": {
"commitizen": {
"path": "@commitlint/prompt"
}
},
"husky": {
"hooks": {
"commit-msg": "commitlint -e $HUSKY_GIT_PARAMS",
"pre-commit": "lint-staged"
}
}
}