-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
103 lines (103 loc) · 2.43 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
{
"name": "netparser",
"version": "1.9.0",
"description": "parse and manipulate network addresses",
"main": "lib/index.js",
"scripts": {
"build": "tsc && jest --coverage",
"test": "tsc --noEmit && jest --coverage",
"bench": "npm run bench-index && npm run bench-match",
"bench-index": "ts-node -T src/benchmarks/index.bench.ts",
"bench-match": "ts-node -T src/benchmarks/match.bench.ts",
"bench-sort": "ts-node -T src/benchmarks/sort.bench.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/demskie/netparser.git"
},
"files": [
"lib/**/*"
],
"keywords": [
"subnet",
"network",
"ip",
"ipv4",
"ipv6",
"cidr",
"address",
"sort"
],
"author": "Alex Demskie",
"license": "MIT",
"homepage": "https://github.com/demskie/netparser#readme",
"bugs": {
"url": "https://github.com/demskie/netparser/issues"
},
"typings": "lib/index.d.ts",
"jest": {
"roots": [
"<rootDir>/src"
],
"transform": {
"^.+\\.(ts|tsx)$": "ts-jest"
},
"testRegex": [
".*.test\\.ts"
],
"moduleFileExtensions": [
"ts",
"js",
"json",
"node"
],
"globals": {
"ts-jest": {
"tsConfig": "tsconfig.json",
"diagnostics": false
}
},
"testPathIgnorePatterns": [
"<rootDir>/node_modules/",
"<rootDir>/config/",
"<rootDir>/build/",
"<rootDir>/src/mockdata/",
"<rootDir>/src/benchmarks/"
],
"collectCoverage": false,
"collectCoverageFrom": [
"!**/tests/**",
"!**/benchmarks/**",
"!**/*.bench.ts",
"!**/*.mock.ts",
"!**/node_modules/**",
"!**/vendor/**",
"**/*.ts"
]
},
"devDependencies": {
"@types/jest": "^24.9.1",
"@types/node": "^12.20.19",
"@typescript-eslint/eslint-plugin": "^2.34.0",
"@typescript-eslint/parser": "^2.34.0",
"coveralls": "^3.1.1",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-prettier": "^3.4.0",
"jest": "^24.9.0",
"prettier": "^1.19.1",
"ts-jest": "^24.3.0",
"ts-node": "^8.10.2",
"typedoc": "^0.15.8",
"typedoc-plugin-markdown": "^2.4.2",
"typescript": "^3.9.10",
"@types/benchmark": "^2.1.1",
"@types/netmask": "^1.0.30",
"benchmark": "^2.1.4",
"cidr-matcher": "^2.1.1",
"ip-address": "^8.1.0",
"ipaddr.js": "^2.0.1",
"netmask": "^2.0.2"
},
"dependencies": {}
}