-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
51 lines (51 loc) · 1.31 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": "firewalker",
"license": "MIT",
"version": "1.0.9",
"homepage": "https://github.com/SerCeMan/firewalker",
"repository": "github:SerCeMan/firewalker",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/",
"lib/"
],
"scripts": {
"build": "rm -rf dist/ && tsc",
"test": "jest",
"lint": "eslint src/* test/*",
"validate": "yarn lint && yarn build && yarn test --coverage",
"prepublishOnly": "yarn validate"
},
"devDependencies": {
"@types/ffi-napi": "^2.4.2",
"@types/ip-address": "^5.8.2",
"@types/jest": "^25.2.3",
"@types/node-fetch": "^2.5.7",
"@types/ref-array-di": "^1.2.0",
"@types/ref-napi": "^1.4.1",
"@types/ref-struct-di": "^1.1.0",
"@types/ref-union-di": "^1.0.0",
"@typescript-eslint/eslint-plugin": "^3.0.0",
"@typescript-eslint/parser": "^3.0.0",
"eslint": "^7.1.0",
"jest": "^26.0.1",
"prettier": "^3.2.5",
"ts-jest": "^26.0.0",
"ts-node": "^8.10.1",
"typescript": "^3.9.3"
},
"dependencies": {
"ffi-napi": "^4.0.3",
"ip-address": "^6.3.0",
"node-fetch": "^2.6.7",
"ref-array-di": "^1.2.2",
"ref-napi": "^3.0.3",
"ref-struct-di": "^1.1.1",
"ref-union-di": "^1.0.1"
},
"engines": {
"node": ">=18.0.0 && < 18.8.0",
"yarn": ">=1.22.4"
}
}