-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 901 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": "backend-store",
"version": "0.7.0",
"main": "index.js",
"license": "MIT",
"scripts": {
"test": "nyc mocha ./test/*.test.js ./test/**/*.test.js && yarn lint",
"lint": "standard",
"docs": "docsify serve ./docs",
"prepublish": "yarn test"
},
"repository": {
"type": "git",
"url": "https://github.com/alekbarszczewski/backend-store"
},
"engines": {
"node": ">= 8.x"
},
"dependencies": {
"bunyan": "^1.8.12",
"es6-error": "^4.1.1",
"fs-readdir-recursive": "^1.1.0",
"ow": "^0.6.0",
"uuid": "^3.2.1"
},
"devDependencies": {
"capture-stdout": "^1.0.0",
"chai": "^4.1.2",
"chai-as-promised": "^7.1.1",
"chai-uuid": "^1.0.6",
"coveralls": "^3.0.1",
"cross-env": "^5.1.5",
"docsify-cli": "^4.2.1",
"mocha": "^5.1.1",
"nyc": "^11.8.0",
"sinon": "^5.0.7",
"standard": "^11.0.1"
}
}