-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
36 lines (36 loc) · 947 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
{
"name": "sugarml",
"description": "basic parser for whitespace-significant html",
"version": "0.8.0",
"author": "Jeff Escalante",
"ava": {
"verbose": "true"
},
"bugs": "https://github.com/reshape/sugarml/issues",
"devDependencies": {
"ava": "^2.1.0",
"coveralls": "^3.0.4",
"matcha": "^0.7.0",
"nyc": "^14.1.1",
"prettier": "^1.18.2",
"pug": "^2.0.3",
"reshape": "^1.0.1"
},
"engines": {
"node": ">= 6.0.0"
},
"homepage": "https://github.com/reshape/sugarml",
"license": "MIT",
"main": "lib",
"repository": "reshape/sugarml",
"scripts": {
"test": "npm run lint && nyc ava",
"lint": "prettier --no-semi --single-quote --write '**/*.js'",
"coverage": "npm test && nyc report --reporter=html && open ./coverage/index.html",
"coveralls": "nyc report --reporter=text-lcov | coveralls",
"bench": "matcha"
},
"dependencies": {
"code-frame": "^5.0.0"
}
}