forked from webflow/js-webflow-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.2 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
{
"name": "webflow-api",
"version": "0.8.0",
"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",
"types": "index.d.ts",
"files": [
"dist",
"src",
"LICENSE",
"yarn.lock",
"index.d.ts"
],
"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": {
"@babel/cli": "^7.17.6",
"@babel/core": "^7.17.8",
"@babel/preset-env": "^7.16.11",
"@babel/register": "^7.17.7",
"ava": "^4.1.0",
"eslint": "^8.12.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.25.2",
"nock": "^13.0.7",
"nyc": "^15.1.0"
},
"dependencies": {
"es6-error": "^4.0.0",
"isomorphic-fetch": "^3.0.0",
"qs": "^6.3.0"
},
"ava": {
"require": [
"@babel/register"
]
}
}