-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.3 KB
/
Copy pathpackage.json
File metadata and controls
55 lines (55 loc) · 1.3 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": "posthtml-pug",
"description": "Pug Parser for PostHTML",
"version": "1.0.2",
"main": "index.js",
"engines": { "node": ">=4", "npm": ">=3" },
"dependencies": {
"posthtml-parser": "^0.2.0",
"pug": "^2.0.0-beta6"
},
"devDependencies": {
"ava": "^0.19.0",
"coveralls": "^2.11.15",
"jsdoc-to-markdown": "^3.0.0",
"nyc": "^10.1.2",
"posthtml": "^0.9.1",
"standard": "^10.0.0",
"standard-changelog": "1.0.1"
},
"scripts": {
"lint": "standard",
"test": "nyc ava test/index.js",
"logs": "standard-changelog > CHANGELOG.md",
"docs": "jsdoc2md index.js > INDEX.md",
"clean": "rm -rf .nyc_output coverage jsdoc-api dmd",
"start": "sudo npm run clean && npm run lint && sudo npm test"
},
"ava": {
"verbose": "true"
},
"nyc": {
"all": true,
"include": ["index.js"],
"extension": [".js"]
},
"keywords": [
"pug",
"html",
"posthtml",
"posthtml-parser"
],
"author": {
"name": "Michael Ciniawky",
"email": "michael.ciniawsky@gmail.com"
},
"repository": {
"type": "git",
"url": "https://github.com/posthtml/posthtml-pug"
},
"bugs": {
"url": "https://github.com/posthtml/posthtml-pug/issues"
},
"homepage": "https://github.com/posthtml/posthtml-pug#readme",
"license": "MIT"
}