-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
44 lines (44 loc) · 1.04 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
{
"name": "@zeplin/sdk",
"version": "0.0.0",
"description": "Zeplin API client for JavaScript",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"prebuild": "rm -rf dist",
"build": "babel --extensions \".ts\" -f .babelrc src/ -d ./dist && tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/zeplin/javascript-sdk.git"
},
"keywords": [
"zeplin",
"api",
"sdk"
],
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/zeplin/javascript-sdk/issues"
},
"homepage": "https://github.com/zeplin/javascript-sdk#readme",
"dependencies": {
"axios": "^1.6.8",
"core-js": "^3.10.2",
"form-data": "^4.0.0",
"regenerator-runtime": "^0.13.7"
},
"devDependencies": {
"@babel/cli": "^7.13.14",
"@babel/node": "^7.13.13",
"@babel/preset-env": "^7.13.15",
"@babel/preset-typescript": "^7.13.0",
"@tsconfig/node14": "^1.0.0",
"@types/node": "^14.14.41",
"typescript": "^4.2.4"
},
"browser": {
"crypto": false
}
}