-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
55 lines (55 loc) · 1.4 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
{
"name": "@dadi/api-wrapper",
"version": "4.3.2",
"description": "A high-level library for interacting with DADI API",
"main": "index.js",
"scripts": {
"test": "eslint --ext js,jsx . && prettier --check '**/*.{js,jsx,md,html,css}' && NODE_ENV=test ./node_modules/.bin/_mocha {test,core/test}/**/*.js",
"posttest": "./scripts/coverage.js"
},
"author": "Eduardo Boucas <mail@eduardoboucas.com>",
"license": "GPL",
"dependencies": {
"@dadi/passport": "~1.5.0",
"debug": "^2.6.1",
"query-string": "5.0.1",
"request-promise": "^2.0.1",
"url-parse": "1.4.3"
},
"repository": {
"type": "git",
"url": "https://github.com/dadi/api-wrapper.git"
},
"bugs": {
"url": "https://github.com/dadi/api-wrapper/issues"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,jsx,md,html,css}": [
"prettier --write",
"git add"
]
},
"homepage": "https://github.com/dadi/api-wrapper",
"devDependencies": {
"@dadi/eslint-config": "latest",
"@dadi/prettier-config": "latest",
"coveralls": "^3.0.2",
"eslint": "^6.0.1",
"husky": "^3.0.0",
"lint-staged": "^9.2.0",
"mocha": "6.2.3",
"mockery": "^1.7.0",
"nock": "^12.0.0",
"nyc": "^15.0.1",
"prettier": "^1.18.2",
"should": "^9.0.2",
"sinon": "^4.5.0",
"supertest": "^4.0.0",
"underscore": "^1.8.3"
}
}