-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.43 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.43 KB
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
57
58
59
60
61
{
"name": "@dadi/api-filestore",
"version": "0.11.4",
"description": "A JSON datastore adapter for DADI API",
"keywords": [
"dadi",
"api",
"connector",
"json",
"filestore",
"dadi-connector",
"dadi-api-connector",
"api-connector"
],
"main": "index.js",
"scripts": {
"test": "eslint . && prettier --check **/*.js && env NODE_ENV=test ./node_modules/.bin/nyc --reporter=lcov ./node_modules/mocha/bin/_mocha test && ./node_modules/.bin/nyc report",
"posttest": "./scripts/coverage.js"
},
"author": "James Lambie <jameslambie@gmail.com>",
"license": "ISC",
"dependencies": {
"@dadi/metadata": "^1.0.0",
"convict": "^4.3.2",
"debug": "^2.6.0",
"lokijs": "1.5.6",
"mkdirp": "^0.5.1",
"uuid": "^3.0.1"
},
"repository": {
"type": "git",
"url": "https://github.com/dadi/api-filestore.git"
},
"devDependencies": {
"@dadi/eslint-config": "^1.0.0",
"@dadi/prettier-config": "^1.0.0",
"colors": "^1.1.2",
"coveralls": "^3.0.1",
"env-test": "^1.0.0",
"eslint": "^5.16.0",
"husky": "^2.4.1",
"js-promise-queue": "^1.1.0",
"lint-staged": "^8.2.1",
"mocha": "^5.2.0",
"nyc": "^14.1.0",
"prettier": "^1.18.2",
"should": "~4.0.4",
"sinon": "~1.17.6"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,jsx,md,html}": [
"prettier --write",
"git add"
]
}
}