-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
36 lines (36 loc) · 912 Bytes
/
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
{
"name": "dtable-web-api",
"version": "5.2.4",
"description": "an interface for dtable-web",
"main": "lib/dtable-web-api.js",
"scripts": {
"lint": "eslint ./src/dtable-web-api.js --fix",
"clean": "rm -rf lib && mkdir lib",
"test": "jest --env=node --colors --coverage",
"build": "./node_modules/.bin/babel src --out-dir lib",
"prepublishOnly": "npm run clean && npm run build"
},
"files": [
"lib",
"src",
"package.json",
"readme.md"
],
"author": "seafile",
"license": "ISC",
"dependencies": {
"axios": "~1.7.*",
"form-data": "^2.5.1"
},
"devDependencies": {
"@babel/cli": "^7.13.16",
"@babel/core": "^7.6.3",
"@babel/plugin-transform-arrow-functions": "^7.2.0",
"@babel/preset-env": "^7.6.3",
"babel-jest": "^29.7.0",
"eslint": "^8.8.0",
"fs": "0.0.1-security",
"jest": "^29.7.0",
"path": "^0.12.7"
}
}