-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.23 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.23 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
{
"name": "bem-classname-parser",
"version": "1.0.2",
"description": "Parse Block Element Modifier from `block__elem_mod`, `block__elem--mod` etc.",
"license": "MIT",
"repository": "VovanR/bem-classname-parser",
"author": "Vladimir Rodkin <mail@vovanr.com> (http://vovanr.com/)",
"engines": {
"node": ">=0.10.0"
},
"scripts": {
"prepush": "npm test",
"test": "xo && nyc ava",
"tdd": "ava --watch",
"release-patch": "mversion patch",
"release-minor": "mversion minor",
"release-major": "mversion major",
"deploy": "gh-pages-deploy"
},
"files": [
"index.js"
],
"main": "index.js",
"keywords": [
"bem",
"block",
"class",
"classname",
"element",
"modifier",
"parser",
"utility"
],
"dependencies": {},
"devDependencies": {
"ava": "^0.14.0",
"conventional-changelog-cli": "^1.1.1",
"coveralls": "^2.11.9",
"cz-conventional-changelog": "^1.1.6",
"husky": "^0.11.4",
"js-yaml": "^3.6.0",
"mversion": "^1.10.1",
"nyc": "^6.4.0",
"xo": "^0.14.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"gh-pages-deploy": {
"staticpath": "example",
"noprompt": false
}
}