-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
39 lines (39 loc) · 1.03 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
{
"name": "posthtml-plugin-boilerplate",
"version": "1.0.0",
"description": "Create new PostHTML plugins",
"keywords": [
"posthtml",
"html",
"posthtml-plugin"
],
"author": "Jonathan Neal <[email protected]>",
"license": "CC0-1.0",
"repository": "jonathantneal/posthtml-plugin-boilerplate",
"homepage": "https://github.com/jonathantneal/posthtml-plugin-boilerplate",
"bugs": "https://github.com/jonathantneal/posthtml-plugin-boilerplate/issues",
"dependencies": {
"posthtml": "^0.8.0"
},
"devDependencies": {
"child-process-promise": "^1.1.0",
"eslint": "^1.10.3",
"fs-extra": "^0.26.4",
"fs-promise": "^0.3.1",
"git-user-info": "^1.0.0",
"inquirer": "^0.11.1",
"jscs": "^2.8.0",
"tap-spec": "^4.1.1",
"tape": "^4.4.0"
},
"scripts": {
"postinstall": "node lib/install.js",
"lint": "eslint . && jscs .",
"tape": "tape test.js | tap-spec",
"test": "npm run lint && npm run tape"
},
"engines": {
"iojs": ">=2.0.0",
"node": ">=0.12.0"
}
}