-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.4 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
{
"name": "sweeney",
"version": "1.4.1",
"description": "💈 A static site generator that cuts the way you want it to",
"author": "Gabriel J. Csapo <gabecsapo@gmail.com>",
"license": "Apache-2.0",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/gabrielcsapo/sweeney.git"
},
"bugs": {
"url": "https://github.com/gabrielcsapo/sweeney/issues"
},
"homepage": "https://www.gabrielcsapo.com/sweeney",
"scripts": {
"lint": "standard --verbose | snazzy",
"lint:fix": "standard --fix --verbose | snazzy",
"pretest": "rm -rf test/tmp",
"test": "tape test/*.js | tap-diff",
"coverage": "npm run pretest && tap test --coverage --coverage-report=lcov",
"generate-docs": "jsdoc -c .jsdoc.json",
"generate-example": "bin/sweeney.js build --output ./docs/example --source ./example"
},
"nyc": {
"exclude": [
"docs/**",
"example/**",
"coverage/**"
],
"all": true
},
"standard": {
"ignore": [
"docs/**",
"example/**",
"coverage/**"
]
},
"bin": {
"sweeney": "./bin/sweeney.js"
},
"devDependencies": {
"jsdoc": "^3.5.5",
"markdown-it": "^8.4.0",
"minami": "^1.2.3",
"snazzy": "^7.1.1",
"standard": "^11.0.1",
"tap": "^11.1.3",
"tap-diff": "^0.1.1",
"tape": "^4.8.0"
},
"dependencies": {
"formidable": "^1.2.1",
"woof": "^0.3.0"
}
}