-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·37 lines (37 loc) · 977 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
{
"name": "node-ikev2",
"title": "Node-IKEV2",
"version": "1.0.0",
"description": "Implementation of IKEV2 for Node.js",
"main": "./lib/index.js",
"module": "./lib/index.js",
"scripts": {
"build": "tsc -p tsconfig.json",
"lint": "eslint 'src/**/*.ts'",
"lint-fix": "eslint 'src/**/*.ts' --fix",
"test": "jest",
"build-and-test": "npm run build && npm run test"
},
"keywords": [
"ikev2",
"ipsec"
],
"author": "Hossein Yavari",
"license": "ISC",
"devDependencies": {
"@types/jest": "^29.5.14",
"@types/node": "^22.7.9",
"@typescript-eslint/eslint-plugin": "^8.10.0",
"@typescript-eslint/parser": "^8.10.0",
"eslint": "^9.12.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"globals": "^15.11.0",
"jest": "^29.7.0",
"prettier": "^3.3.3",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"typescript": "^5.5.4",
"typescript-eslint": "^8.10.0"
}
}