-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
50 lines (50 loc) · 1.26 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
45
46
47
48
49
50
{
"name": "@inaza/motorjs",
"version": "0.1.0-alpha",
"description": "Inaza JS SDK",
"main": "dist/node/index.js",
"authors": [
{
"name": "Adesh Copade",
"email": "adesh@nsurely.com"
}
],
"license": "",
"repository": "github:nsurely/motorJS",
"devDependencies": {
"@babel/cli": "^7.19.3",
"@babel/core": "^7.20.2",
"@babel/plugin-transform-modules-umd": "^7.18.6",
"@babel/plugin-transform-runtime": "^7.19.6",
"@babel/preset-env": "^7.20.2",
"@babel/preset-typescript": "^7.18.6",
"@types/jest": "^29.2.2",
"@types/node-fetch": "^2.6.2",
"babel-jest": "^29.3.0",
"jest": "^29.0.3",
"jsdoc": "^4.0.0",
"ts-loader": "^9.4.1",
"typescript": "^4.8.4",
"webpack": "^5.74.0",
"webpack-cli": "^4.10.0"
},
"scripts": {
"build": "rm -rf ./dist && tsc --build && webpack",
"tsc": "rm -rf ./dist/node && tsc",
"tsc-watch": "rm -rf ./dist/node && tsc -w",
"build-webpack": "rm -rf ./dist/web && webpack",
"build-webpack-watch": "rm -rf ./dist/web && webpack -w",
"test": "jest --silent",
"docs": "tsc && jsdoc -c ./.jsdoc.json"
},
"files": [
"src", "dist"
],
"dependencies": {
"@babel/runtime": "^7.19.0",
"dotenv": "^16.0.3",
"node-fetch": "^2.6.7",
"react-native-storage": "^1.0.1",
"regenerator-runtime": "^0.13.10"
}
}