-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
39 lines (39 loc) · 960 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
37
38
39
{
"name": "multinet",
"version": "0.0.0-push-release",
"description": "Multinet client library",
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"files": [
"dist/src/index.d.ts",
"dist/src/index.d.ts.map",
"dist/src/index.js",
"dist/src/index.js.map",
"dist/src/axios.d.ts",
"dist/src/axios.d.ts.map",
"dist/src/axios.js",
"dist/src/axios.js.map"
],
"scripts": {
"start": "tsc -w",
"build": "tsc",
"lint": "tslint -p tsconfig.json -c tslint.json",
"lint:fix": "tslint --force -p tsconfig.json -c tslint.json",
"test": "jest"
},
"author": "Kitware, Inc.",
"license": "Apache-2.0",
"dependencies": {
"axios": "^0.21.1",
"django-s3-file-field": "^0.1.2",
"ts-jest": "^26.5.4"
},
"devDependencies": {
"@types/jest": "^26.0.21",
"esm": "^3.2.25",
"jest": "^26.6.3",
"tslib": "^1.10.0",
"tslint": "^5.20.0",
"typescript": "^4.2.3"
}
}