-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
39 lines (39 loc) · 980 Bytes
/
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
{
"name": "vinyldns-js",
"version": "0.9.11",
"description": "A JavaScript client for VinylDNS",
"main": "src/vinyldns.js",
"scripts": {
"test": "make tests",
"integration-tests": "bin/run-integration-tests.sh",
"start-api": "make start-api",
"stop-api": "make stop-api",
"generate-docs": "documentation build src/** -f html -o docs",
"repl": "node bin/repl.js",
"tag": "git tag $npm_package_version && git push origin $npm_package_version"
},
"repository": {
"type": "git",
"url": "git+https://github.com/vinyldns/vinyldns-js.git"
},
"keywords": [
"vinyl",
"dns",
"vinyldns"
],
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/vinyldns/vinyldns-js/issues"
},
"dependencies": {
"aws4": "1.11.0",
"axios": "^0.26.0"
},
"devDependencies": {
"documentation": "13.1.0",
"eslint": "7.14.0",
"mocha": "8.2.1",
"nock": "13.0.5",
"highlight.js": ">=10.4.1"
}
}