-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
42 lines (42 loc) · 933 Bytes
/
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
{
"name": "posthtml-prefix-class",
"version": "1.0.5",
"description": "PostHTML plugin to prefix class names",
"keywords": [
"posthtml",
"posthtml-plugin",
"prefix",
"class"
],
"repository": {
"type": "git",
"url": "git+https://github.com/stevenbenisek/posthtml-prefix-class.git"
},
"bugs": {
"url": "https://github.com/stevenbenisek/posthtml-prefix-class/issues"
},
"homepage": "https://github.com/stevenbenisek/posthtml-prefix-class",
"main": "index.js",
"scripts": {
"test": "mocha -R spec ./test/test.js"
},
"author": "Steven Benisek <steven.benisek@gmail.com>",
"license": "MIT",
"devDependencies": {
"ghooks": "^1.0.1",
"mocha": "^2.3.4",
"posthtml": "^0.8.0"
},
"dependencies": {
"minimatch": "^3.0.0",
"object-assign": "^4.0.1"
},
"config": {
"ghooks": {
"pre-push": "npm test"
}
},
"files": [
"index.js"
]
}