-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.32 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.32 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
{
"name": "@simplyappdevs/cidr-calculator-cli",
"description": "CLI to calculate CIDR block (NPM Package)",
"version": "0.0.1",
"type": "commonjs",
"main": "./dist/cli.js",
"bin": {
"cidrcli": "./dist/cli.js"
},
"scripts": {
"tsc": "tsc",
"del": "rimraf",
"test": "echo \"This package does not have UnitTest\" && exit 1",
"cp": "fse copy",
"clean": "npm run del ./dist/*",
"build": "npm run clean && npm run tsc",
"exec": "node ./dist/cli.js",
"exec:build": "npm run build && npm run exec",
"prepublishOnly": "npm run clean && npm run test && npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/simplyappdevs/cidr-calculator-cli.git"
},
"keywords": [
"cidr",
"typescript",
"commander"
],
"author": "SimplyAppDevs (requestinfo@simplyappdevs.com)",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/simplyappdevs/cidr-calculator-cli/issues"
},
"homepage": "https://github.com/simplyappdevs/cidr-calculator-cli#readme",
"devDependencies": {
"@atao60/fse-cli": "^0.1.7",
"@marsraptor/bitset": "^1.0.0",
"@types/node": "^16.3.3",
"rimraf": "^3.0.2",
"typescript": "^4.3.5"
},
"dependencies": {
"@simplyappdevs/cidr-calculator": "^1.0.1",
"@simplyappdevs/logging-helper": "^1.1.0"
}
}