forked from webflow/js-webflow-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 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
52
53
{
"name": "webflow-api",
"version": "0.4.1",
"description": "SDK for the Webflow CMS API",
"main": "dist/index.js",
"jsnext:main": "src/index.js",
"repository": {
"url": "https://github.com/webflow/js-webflow-api.git",
"type": "git"
},
"license": "MIT",
"files": [
"dist",
"src",
"LICENSE",
"yarn.lock"
],
"scripts": {
"build": "BABEL_ENV=production babel --out-dir dist src/",
"lint": "eslint src",
"prepublish": "npm run build",
"report": "nyc report --reporter=html",
"test": "nyc ava",
"watch": "npm run build -- --watch",
"watch:test": "npm run test -- --watch"
},
"devDependencies": {
"ava": "^0.16.0",
"babel-cli": "^6.18.0",
"babel-core": "^6.18.2",
"babel-eslint": "^7.1.0",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-preset-es2015": "^6.18.0",
"babel-preset-stage-1": "^6.16.0",
"babel-register": "^6.18.0",
"eslint": "^3.10.1",
"eslint-config-airbnb-base": "^10.0.1",
"eslint-plugin-import": "^2.2.0",
"nock": "^9.0.2",
"nyc": "^9.0.1"
},
"dependencies": {
"es6-error": "^4.0.0",
"isomorphic-fetch": "^2.2.1",
"qs": "^6.3.0"
},
"ava": {
"require": [
"babel-register"
],
"babel": "inherit"
}
}