-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 917 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
{
"name": "contentful-migrations",
"description": "programmatic content model control for contentful",
"version": "0.2.0",
"author": "Jeff Escalante",
"ava": {
"verbose": "true"
},
"bugs": "https://github.com/carrot/contentful-migrations/issues",
"devDependencies": {
"ava": "^0.19.1",
"coveralls": "^2.13.1",
"nyc": "^10.3.2",
"snazzy": "^7.0.0",
"standard": "^10.0.2"
},
"engines": {
"node": ">= 6"
},
"homepage": "https://github.com/carrot/contentful-migrations",
"license": "MIT",
"main": "lib",
"repository": "carrot/contentful-migrations",
"scripts": {
"test": "nyc ava",
"lint": "standard | snazzy",
"coverage": "nyc ava && nyc report --reporter=html && open ./coverage/index.html",
"coveralls": "nyc report --reporter=text-lcov | coveralls"
},
"dependencies": {
"node-fetch": "^1.6.3",
"promise-throttle": "^0.3.1"
}
}