-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
40 lines (40 loc) · 1.06 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
{
"name": "seatable-api",
"version": "1.0.42",
"description": "A tool library for accessing seatable base, providing interface services for third-party developers",
"files": [
"lib",
"package.json",
"package-lock.json"
],
"main": "./lib/index.js",
"scripts": {
"clean": "rm -rf lib && mkdir lib",
"test": "jest",
"build": "./node_modules/.bin/babel src --out-dir lib",
"prepublishOnly": "npm run clean && npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/seatable/seatable-api-js.git"
},
"author": "seafile",
"license": "ISC",
"bugs": {
"url": "https://github.com/seatable/seatable-api-js/issues"
},
"homepage": "https://github.com/seatable/seatable-api-js#readme",
"dependencies": {
"@babel/runtime": "7.20.13",
"axios": "~1.7.*",
"dayjs": "1.10.7"
},
"devDependencies": {
"@babel/cli": "7.15.7",
"@babel/core": "7.15.8",
"@babel/plugin-transform-runtime": "7.19.6",
"@babel/preset-env": "7.15.8",
"eslint": "8.0.1",
"jest": "27.2.5"
}
}