-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
67 lines (67 loc) · 1.54 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
{
"name": "node-cidr",
"version": "1.0.0",
"description": "[![view on npm](http://img.shields.io/npm/v/example.svg)](https://www.npmjs.org/package/example)",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"test": "./node_modules/.bin/nyc mocha --require ts-node/register --watch-extensions ts,tsx test/**/*.{ts,tsx}",
"build": "tsc",
"docs": "typedoc --theme markdown --out docs --mode file --readme README.stub.md && mv docs/README.md . && rm -rf docs",
"docts": "docts"
},
"keywords": [
"calculator",
"cidr",
"ip",
"ipaddress",
"ipv6",
"mask",
"net",
"netmask",
"network",
"subnet"
],
"author": "Armin Graf",
"license": "Apache-2.0",
"devDependencies": {
"chai": "^4.1.2",
"mocha": "^5.0.5",
"nyc": "^11.6.0",
"ts-node": "^5.0.1",
"typedoc": "^0.11.1",
"typedoc-plugin-external-module-name": "^1.1.1",
"typedoc-plugin-markdown": "^1.0.14"
},
"nyc": {
"include": [
"src/**/*.ts",
"src/**/*.tsx"
],
"extension": [
".ts",
".tsx"
],
"require": [
"ts-node/register"
],
"reporter": [
"text-summary",
"html"
],
"sourceMap": true,
"instrument": true
},
"directories": {
"test": "test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/arminhammer/node-cidr.git"
},
"bugs": {
"url": "https://github.com/arminhammer/node-cidr/issues"
},
"homepage": "https://github.com/arminhammer/node-cidr#readme",
"typings": "src/index.ts"
}