-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 904 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 904 Bytes
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
{
"name": "@hownetworks/ipv46",
"version": "2.0.2",
"description": "Parse, format and compare IPv4/6 addresses",
"main": "dist/ipv46.js",
"module": "dist/ipv46.mjs",
"source": "src/ipv46.ts",
"sideEffects": false,
"author": "Joachim Viide <jviide@iki.fi>",
"repository": "HowNetWorks/ipv46",
"license": "MIT",
"scripts": {
"test": "tsc --noEmit --skipLibCheck && TS_NODE_COMPILER_OPTIONS='{\"module\":\"commonjs\"}' mocha --require ts-node/register test/**/*.test.js",
"build": "rm -rf dist && microbundle --format es,cjs",
"prepublishOnly": "yarn run build"
},
"devDependencies": {
"@types/chai": "^4.2.8",
"@types/mocha": "^7.0.1",
"chai": "^4.2.0",
"microbundle": "^0.12.0-next.8",
"mocha": "^7.0.1",
"ts-node": "^8.6.2",
"typescript": "^3.7.2"
},
"keywords": [
"ip",
"ipv4",
"ipv6",
"rfc4291",
"rfc5952"
]
}