-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
51 lines (51 loc) · 1.25 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
{
"name": "reshape-standard",
"description": "a standard plugin pack for reshape",
"version": "3.3.0",
"author": "Jeff Escalante",
"ava": {
"verbose": "true"
},
"bugs": "https://github.com/reshape/standard/issues",
"dependencies": {
"markdown-it": "^8.4.0",
"reshape-beautify": "^0.1.2",
"reshape-content": "^0.3.0",
"reshape-eval-code": "^0.3.4",
"reshape-expressions": "^0.1.5",
"reshape-include": "^1.0.0",
"reshape-layouts": "^1.0.0",
"reshape-minify": "^1.1.0",
"reshape-retext": "^1.0.1",
"retext-smartypants": "^3.0.1"
},
"devDependencies": {
"ava": "^0.24.0",
"codecov": "^3.0.0",
"nyc": "^11.4.1",
"reshape": "^0.4.2",
"rewire": "^3.0.0",
"snazzy": "^7.0.0",
"standard": "^10.0.3",
"sugarml": "^0.7.0"
},
"engines": {
"node": ">= 6.0.0"
},
"homepage": "https://github.com/reshape/standard",
"keywords": [
"html",
"reshape",
"reshape-plugin",
"standard"
],
"license": "MIT",
"main": "lib",
"repository": "reshape/standard",
"scripts": {
"codecov": "nyc report -r lcovonly && codecov",
"coverage": "nyc ava && nyc report --reporter=html && open ./coverage/index.html",
"lint": "standard | snazzy",
"test": "nyc ava"
}
}