-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 935 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 935 Bytes
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
{
"name": "@bboxlab/mosel-sdk",
"version": "0.1.23",
"description": "",
"main": "dist/index.cjs.js",
"module": "dist/index.esm.js",
"scripts": {
"ts": "tsc",
"build": "rm -rf dist && tsc && rollup -c",
"push": "rm -rf dist && tsc && rollup -c && yalc publish",
"test": "jest"
},
"files": [
"dist"
],
"author": "",
"license": "MIT",
"dependencies": {
"axios": "^0.27.2",
"class-transformer": "^0.5.1",
"joi": "^17.6.0",
"reflect-metadata": "^0.1.13"
},
"devDependencies": {
"@babel/core": "^7.19.3",
"@babel/preset-env": "^7.19.3",
"@babel/preset-typescript": "^7.18.6",
"@rollup/plugin-node-resolve": "^13.3.0",
"@rollup/plugin-typescript": "^8.3.3",
"@types/jest": "^29.1.1",
"@types/joi": "^17.2.3",
"@types/node": "^18.7.18",
"babel-jest": "^29.1.2",
"jest": "^29.1.2",
"rollup": "^2.76.0",
"typescript": "^4.7.4"
}
}