-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
42 lines (42 loc) · 944 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
40
41
42
{
"name": "strongswan-vici",
"version": "1.1.1",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"types": "types/index.d.ts",
"description": "An implementation for the VICI API for Node.js",
"files": [
"dist/**/*.js",
"types/**/*.d.ts"
],
"author": {
"name": "Maximilian Schelbach",
"email": "maximilian@schelbach.de"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/jsd0fl1/strongswan-vici"
},
"homepage": "https://github.com/jsd0fl1/strongswan-vici#readme",
"bugs": {
"url": "https://github.com/jsd0fl1/strongswan-vici/issues"
},
"keywords": [
"vpn",
"strongswan",
"ipsec",
"api"
],
"scripts": {
"build": "tsc -b tsconfig.cjs.json tsconfig.esm.json"
},
"dependencies": {
"tslib": "^2.0.3",
"typescript": "^4.0.3"
},
"devDependencies": {
"@types/node": "^14.14.2",
"renamer": "^2.0.1"
}
}