-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
62 lines (62 loc) · 1.53 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
58
59
60
61
62
{
"name": "@chainsafe/netmask",
"version": "2.0.0",
"description": "Typescript implementation of netmask filtering",
"main": "dist/src/index.js",
"type": "module",
"author": "[email protected]",
"license": "MIT",
"scripts": {
"lint": "eslint src/ test/",
"build": "tsc",
"test": "yarn run test:node",
"test:node": "cross-env NODE_OPTIONS=\"--loader ts-node/esm\" mocha --extension ts test/**/*.spec.ts",
"test:chrome": "web-test-runner test/**/*.spec.ts --node-resolve --playwright",
"test:firefox": "web-test-runner test/**/*.spec.ts --node-resolve --playwright --browsers firefox"
},
"dependencies": {
"@chainsafe/is-ip": "^2.0.1"
},
"devDependencies": {
"@chainsafe/eslint-config": "^1.1.0",
"@esm-bundle/chai": "^4.3.4-fix.0",
"@rushstack/eslint-patch": "^1.2.0",
"@types/mocha": "^10.0.1",
"@web/dev-server-esbuild": "^0.3.3",
"@web/test-runner": "^0.15.0",
"@web/test-runner-playwright": "^0.9.0",
"cross-env": "^7.0.3",
"eslint": "^8.31.0",
"mocha": "^10.2.0",
"ts-node": "^10.9.1",
"typescript": "^4.9.4"
},
"exports": {
".": {
"types": "./src/index.d.ts",
"import": "./dist/src/index.js"
}
},
"typesVersions": {
"*": {
"*": [
"*",
"dist/*",
"dist/src/*",
"dist/src/*/index"
],
"src/*": [
"*",
"dist/*",
"dist/src/*",
"dist/src/*/index"
]
}
},
"files": [
"src",
"dist",
"!dist/test",
"!**/*.tsbuildinfo"
]
}