-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
51 lines (51 loc) · 1.48 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
51
{
"name": "@modelon/impact-client-js",
"version": "4.1.0",
"description": "Modelon Impact Client for Javascript",
"scripts": {
"build": "tsup",
"watch": "tsup --watch",
"lint": "eslint src/",
"test": "vitest tests",
"unit-test": "vitest tests/unit",
"integration-test": "vitest tests/integration"
},
"repository": {
"type": "git",
"url": "git+https://github.com/modelon-community/impact-client-js.git"
},
"author": "Modelon AB",
"license": "BSD-3-Clause",
"main": "dist/index.js",
"files": [
"/dist"
],
"engines": {
"node": ">=16"
},
"bugs": {
"url": "https://github.com/modelon-community/impact-client-js/issues"
},
"types": "./dist/index.d.ts",
"homepage": "https://github.com/modelon-community/impact-client-js#readme",
"dependencies": {
"axios": "^1.6.0",
"axios-cookiejar-support": "^4.0.3",
"fast-xml-parser": "^4.2.7",
"tough-cookie": "^4.0.0"
},
"devDependencies": {
"@semantic-release/git": "^10.0.1",
"@types/tough-cookie": "^4.0.2",
"@typescript-eslint/eslint-plugin": "^5.37.0",
"@typescript-eslint/parser": "^5.37.0",
"dotenv": "^16.0.2",
"eslint": "^8.23.1",
"jsdom": "^22.1.0",
"prettier": "^2.7.1",
"semantic-release": "^23.0.8",
"tsup": "^6.2.3",
"typescript": "^4.8.2",
"vitest": "^0.34.3"
}
}