-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
37 lines (37 loc) · 938 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
37
{
"name": "reshape-layouts",
"description": "flexible layouts using 'extend' and 'block' tags",
"version": "1.0.0",
"author": "Jeff Escalante",
"ava": {
"verbose": "true",
"serial": "true"
},
"bugs": "https://github.com/reshape/layouts/issues",
"devDependencies": {
"ava": "^0.21.0",
"coveralls": "^2.13.1",
"nyc": "^11.1.0",
"proxyquire": "^1.8.0",
"reshape": "^0.4.0",
"snazzy": "^7.0.0",
"standard": "^10.0.2"
},
"homepage": "https://github.com/reshape/layouts",
"keywords": [
"extend",
"html",
"jade",
"reshape-plugin",
"template"
],
"license": "MIT",
"main": "lib",
"repository": "http://github.com/reshape/layouts",
"scripts": {
"coverage": "nyc ava && nyc report --reporter=html && open ./coverage/index.html",
"coveralls": "nyc report --reporter=text-lcov | coveralls",
"pretest": "standard | snazzy",
"test": "nyc ava"
}
}