-
Notifications
You must be signed in to change notification settings - Fork 97
/
package.json
49 lines (49 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
{
"name": "webflow-api",
"description": "Webflow's official Node.js SDK for Data APIs",
"version": "1.1.0",
"types": "dist/index.d.ts",
"main": "dist/index.js",
"contributors": [
"John Agan (https://github.com/johnagan)"
],
"repository": {
"url": "https://github.com/webflow/js-webflow-api.git",
"type": "git"
},
"license": "MIT",
"files": [
"dist",
"src",
"LICENSE",
"yarn.lock"
],
"scripts": {
"build": "yarn clean && tsc -p ./",
"lint": "eslint . --ext .ts,.tsx",
"prepublish": "yarn build",
"watch": "tsc -watch -p ./",
"clean": "rm -rf dist",
"test": "jest"
},
"devDependencies": {
"@jest/globals": "^29.2.2",
"@types/isomorphic-fetch": "^0.0.36",
"@types/jest": "^29.2.1",
"@types/node": "^18.11.9",
"@typescript-eslint/eslint-plugin": "^5.42.0",
"@typescript-eslint/parser": "^5.42.0",
"axios-mock-adapter": "^1.21.2",
"eslint": "^8.12.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^29.2.2",
"prettier": "^2.7.1",
"ts-jest": "^29.0.3",
"typescript": "^4.8.4"
},
"dependencies": {
"axios": "^1.1.3",
"isomorphic-fetch": "^3.0.0"
}
}