-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 1.64 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
58
59
60
61
62
63
64
65
66
{
"name": "posthtml-load-config",
"version": "2.0.0",
"description": "Autoload Config for PostHTML",
"engines": {
"node": ">=10"
},
"main": "index.js",
"scripts": {
"version": "npm run logs && git add CHANGELOG.md && git commit -m \"build: update changelog\"",
"lint": "standard",
"test": "nyc ava test/js/index.js test/rc/index.js test/pkg/index.js",
"logs": "standard-changelog > CHANGELOG.md",
"docs": "jsdoc2md index.js > INDEX.md",
"clean": "rm -rf .nyc_output coverage jsdoc-api dmd",
"start": "npm run clean && npm run lint && npm test"
},
"dependencies": {
"cosmiconfig": "^2.1.0",
"posthtml-load-options": "^1.0.0"
},
"devDependencies": {
"ava": "^3.12.1",
"coveralls": "^3.1.0",
"htmlnano": "^0.2.6",
"jsdoc-to-markdown": "^6.0.1",
"nyc": "^15.1.0",
"posthtml": "^0.13.3",
"posthtml-content": "0.0.3",
"posthtml-include": "^1.1.0",
"posthtml-pug": "^1.0.2",
"posthtml-sugarml": "^1.0.0-alpha3",
"standard": "^14.3.4",
"standard-changelog": "^2.0.24"
},
"ava": {
"verbose": "true"
},
"nyc": {
"all": true,
"include": [
"index.js",
"lib"
],
"extension": [
".js"
]
},
"keywords": [
"posthtml",
"posthtml-config"
],
"author": {
"name": "Michael Ciniawky",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "git+https://github.com/posthtml/posthtml-load-config.git"
},
"bugs": {
"url": "https://github.com/posthtml/posthtml-load-config/issues"
},
"homepage": "https://github.com/posthtml/posthtml-load-config#readme",
"license": "MIT"
}