-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathpackage.json
56 lines (56 loc) · 1.58 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
{
"name": "godaddy-dns",
"version": "1.3.0",
"description": "A Node.js script to programmatically update GoDaddy DNS records",
"repository": {
"type": "git",
"url": "https://github.com/lmammino/godaddy-dns.git"
},
"license": {
"type": "MIT",
"url": "https://raw.githubusercontent.com/lmammino/godaddy-dns/master/LICENSE"
},
"main": "src/godaddy-dns.js",
"bin": {
"godaddy-dns": "src/cli.js"
},
"scripts": {
"test:lint": "eslint godaddy-dns.js",
"test:unit": "jest src --verbose --coverage",
"test": "npm run test:lint && npm run test:unit",
"package:create": "pkg . -t node6-win,node6-macos,node6-linux --out-dir build",
"package:publish": "node scripts/publish-release $GITHUB_TOKEN lmammino/godaddy-dns $npm_package_version",
"release:tag": "git tag $npm_package_version && git push --tags"
},
"author": {
"name": "Luciano Mammino",
"email": "[email protected]",
"url": "https://loige.co"
},
"contributors": [
{
"name": "Jon Inazio Sánchez Martínez",
"email": "[email protected]",
"url": "https://www.joninx.com/"
}
],
"engines": {
"node": ">=6.0.0"
},
"engine-strict": true,
"dependencies": {
"commander": "^2.9.0",
"request": "^2.72.0",
"request-promise": "^4.2.2"
},
"devDependencies": {
"eslint": "^4.11.0",
"eslint-config-standard": "^10.2.1",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-node": "^5.2.1",
"eslint-plugin-promise": "^3.6.0",
"eslint-plugin-standard": "^3.0.1",
"jest": "^21.2.1",
"pkg": "^4.3.0-beta.1"
}
}