-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.33 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.33 KB
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
{
"name": "@cpecific/ip-utils",
"version": "1.0.4",
"main": "build/es5/cjs/index.js",
"module": "build/esnext/esm/index.js",
"types": "build/esnext/esm/index.d.ts",
"scripts": {
"clean": "cleandir ./build",
"prebuild": "npm run clean",
"build": "run-s build:es5:* build:esnext:*",
"build:es5:commonjs": "tsc -p src --outDir build/es5/cjs",
"build:esnext:commonjs": "tsc -p src -t esnext --outDir build/esnext/cjs",
"build:esnext:esm": "tsc -p src -d -t esnext -m es6 --outDir build/esnext/esm",
"prepublishOnly": "npm run build",
"test": "cross-env TS_NODE_PROJECT=tests/tsconfig.json mocha -r ts-node/register tests/**/*.test.ts"
},
"files": [
"build/**/*"
],
"sideEffects": false,
"repository": {
"type": "git",
"url": "git+https://github.com/Cpecific/ip-utils.git"
},
"description": "IP utils for working with byte data of IPv4, IPv6 and Networks",
"keywords": [
"ip",
"ipv4",
"ipv6",
"network",
"subnet",
"byte"
],
"author": "cpecific",
"license": "ISC",
"homepage": "https://github.com/Cpecific/ip-utils",
"devDependencies": {
"@types/chai": "^4.2.8",
"@types/deep-equal": "^1.0.1",
"@types/mocha": "^7.0.1",
"chai": "^4.2.0",
"cross-env": "^7.0.0",
"deep-equal": "^2.0.1",
"mocha": "^7.0.1",
"npm-run-all": "^4.1.5",
"ts-node": "^8.6.2",
"typescript": "^3.8.3"
},
"dependencies": {}
}