-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
39 lines (39 loc) · 1.12 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
{
"name": "dtable-sdk",
"version": "5.0.6",
"description": "dtable sdk",
"main": "./dist/index.js",
"scripts": {
"clean": "rm -rf dist && mkdir dist",
"example": "export DEBUG=dtable* && babel-node ./example/example.js",
"test": "export DEBUG=dtable* && babel-node ./test/test-complex.js",
"test:jest": "jest",
"build:pkg-js": "./node_modules/.bin/babel src --out-dir dist",
"build:pkg-bin": "./node_modules/.bin/babel bin --out-dir dist/bin --copy-files",
"prepublishOnly": "npm run clean && npm run build:pkg-js"
},
"files": [
"dist",
"package.json",
"package-lock.json"
],
"dependencies": {
"axios": "~1.7.*",
"dtable-store": "5.2.12",
"form-data": "^3.0.0"
},
"devDependencies": {
"@babel/cli": "7.22.15",
"@babel/core": "^7.23.2",
"@babel/plugin-proposal-class-properties": "^7.5.0",
"@babel/plugin-transform-modules-commonjs": "^7.5.0",
"@babel/preset-env": "^7.23.2",
"@babel/register": "^7.4.4",
"babel-register": "^6.26.0",
"debug": "^4.1.1",
"jest": "^29.7.0"
},
"jest": {
"testRegex": "/test/.*.test.jsx?$"
}
}