forked from emartech/dme-node
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.13 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
{
"name": "dme-sdk",
"version": "1.1.5",
"description": "This module allows one to connect to DNSMadeEasy's APIs (V2.0)",
"main": "lib/dnsmadeeasy.js",
"dependencies": {
"bluebird": "3.0.5",
"lodash": "3.10.1",
"request": "2.67.0"
},
"devDependencies": {
"chai-subset": "1.1.0",
"co-mocha": "1.1.2",
"eslint": "1.10.2",
"istanbul": "0.4.1",
"mocha": "2.3.4",
"nock": "3.3.2",
"pre-commit": "1.1.2",
"sinon": "1.17.2",
"sinon-chai": "2.8.0",
"validate-commit-message": "3.0.1",
"winston": "2.1.1"
},
"scripts": {
"coverage": "NODE_ENV=test istanbul cover _mocha -- --require co-mocha $(find lib -name \"*.spec.js\"); open coverage/lcov-report/index.html",
"test": "NODE_ENV=test mocha --require co-mocha $(find lib -name \"*.spec.js\")",
"eslint": "eslint lib",
"validate-commit-msg": "validate-commit-msg"
},
"pre-commit": [
"eslint",
"test",
"validate-commit-msg"
],
"repository": {
"type": "git",
"url": "https://github.com/emartech/dme-node"
},
"keywords": [
"dnsmadeeasy",
"dns",
"api"
],
"author": "RisingStack"
}