-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.06 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
{
"name": "ts-zone-file",
"version": "3.4.5",
"description": "",
"main": "lib/index.js",
"files": [
"lib/**/*"
],
"scripts": {
"start": "nodemon --watch src --watch input.txt --require ts-node/register src/index.ts",
"run": "npm run build && node lib/index.js",
"build": "tsc -p .",
"test": "jest --config jestconfig.json --reporters=default --reporters=jest-junit --coverage",
"prepublishOnly": "npm run build",
"postversion": "git push --follow-tags"
},
"repository": {
"type": "git",
"url": "https://gitlab.kristianjones.xyz/kfj-lab/TS-BIND.git"
},
"author": "Kristian Jones <me@kristianjones.xyz>",
"license": "ISC",
"devDependencies": {
"@types/fs-extra": "^5.1.0",
"@types/jest": "^24.0.12",
"fs-extra": "^8.0.0",
"jest": "^24.8.0",
"jest-junit": "^6.4.0",
"nodemon": "^1.19.0",
"ts-jest": "^24.0.2",
"ts-node": "^8.1.0",
"typescript": "^3.4.5"
},
"dependencies": {},
"keywords": [
"BIND",
"BIND9",
"BIND Zone",
"DNS",
"zone file",
"zone-file"
]
}