-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 854 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 854 Bytes
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
{
"name": "reshape-plugin-util",
"description": "utilities for reshape plugins",
"version": "0.2.1",
"author": "Jeff Escalante",
"ava": {
"verbose": "true"
},
"bugs": "https://github.com/reshape/plugin-util/issues",
"devDependencies": {
"ava": "^0.19.0",
"coveralls": "2.x",
"nyc": "^10.0.0",
"reshape": "0.5.0",
"snazzy": "^6.0.0",
"standard": "10.0.0"
},
"engines": {
"node": ">= 6.0.0"
},
"homepage": "https://github.com/reshape/plugin-util",
"license": "MIT",
"main": "lib",
"repository": "reshape/plugin-util",
"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"
},
"dependencies": {
"when": "^3.7.7"
}
}