-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.34 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
52
53
54
55
56
57
{
"name": "weishaupt-api",
"version": "0.1.2",
"engines": {
"node": ">=14.0.0"
},
"description": "Nodejs wrapper for the Weishaupt API",
"author": {
"name": "Moritz Heusinger",
"email": "moritz.heusinger@gmail.com"
},
"contributors": [
{
"name": "Moritz Heusinger",
"email": "moritz.heusinger@gmail.com"
}
],
"homepage": "https://github.com/foxriver76/node-weishaupt-api",
"license": "MIT",
"keywords": [
"weishaupt",
"wcm-com"
],
"dependencies": {
"axios": "^0.27.2"
},
"devDependencies": {
"@types/node": "^18.7.18",
"@types/request-promise-native": "^1.0.18",
"@typescript-eslint/eslint-plugin": "^5.37.0",
"@typescript-eslint/parser": "^5.37.0",
"chai": "^4.3.6",
"eslint": "^8.23.1",
"eslint-config-prettier": "^8.4.0",
"eslint-plugin-prettier": "^4.2.1",
"mocha": "^10.0.0",
"prettier": "^2.5.1",
"typescript": "^4.8.3"
},
"scripts": {
"test": "node node_modules/mocha/bin/mocha",
"build": "tsc -b tsconfig.build.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/foxriver76/node-weishaupt-api.git"
},
"bugs": {
"url": "https://github.com/foxriver76/node-weishaupt-api/issues"
},
"files": [
"build/",
"LICENSE"
],
"main": "build/weishaupt.js",
"types": "build/weishaupt.d.ts"
}