forked from reshape/reshape
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.27 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
{
"name": "reshape",
"description": "A plugin-based html template engine",
"version": "0.3.0",
"author": "Jeff Escalante",
"ava": {
"verbose": "true",
"files": [
"test/index.js"
]
},
"bugs": {
"url": "https://github.com/reshape/reshape/issues"
},
"dependencies": {
"babel-code-frame": "^6.11.0",
"joi": "^9.0.1",
"lodash.merge": "^4.4.0",
"reshape-code-gen": "^0.1.0",
"reshape-parser": "^0.2.0",
"when": "^3.7.7"
},
"devDependencies": {
"ava": "^0.16.0",
"coveralls": "^2.11.11",
"nyc": "^7.0.0",
"posthtml-parser": "^0.2.0",
"posthtml-render": "^1.0.5",
"reshape-custom-elements": "0.1.0",
"reshape-expressions": "0.1.0",
"snazzy": "^4.0.1",
"standard": "^7.1.2",
"sugarml": "0.2.0"
},
"engines": {
"node": ">=6"
},
"homepage": "https://github.com/reshape/reshape",
"keywords": [
"html",
"parser",
"processor",
"transform"
],
"license": "MIT",
"main": "lib",
"repository": "https://github.com/reshape/reshape",
"scripts": {
"coverage": "nyc ava && nyc report --reporter=html && open ./coverage/index.html",
"coveralls": "nyc report --reporter=text-lcov | coveralls",
"lint": "standard | snazzy",
"test": "npm run lint && nyc ava"
}
}