-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
36 lines (36 loc) · 914 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
{
"name": "skvs",
"version": "0.4.3",
"description": "Simple Key Value Store",
"main": "skvs.js",
"bin": {
"skvs": "./skvs.js"
},
"scripts": {
"start": "./skvs.js",
"test": "jasmine tests/*",
"check-coverage": "node_modules/.bin/nyc --check-coverage --lines 100 --functions 100 --branches 100 node_modules/.bin/jasmine tests/*"
},
"repository": {
"type": "git",
"url": "https://github.com/jdmichaud/skvs.git"
},
"author": "Jean-Daniel Michaud",
"license": "MIT",
"dependencies": {
"body-parser": "^1.16.0",
"command-line-args": "^4.0.1",
"command-line-usage": "^4.0.0",
"express": "^4.14.1",
"lodash": "^4.17.4",
"morgan": "^1.9.0",
"tmp": "0.0.31"
},
"devDependencies": {
"eslint": "^3.14.1",
"eslint-config-airbnb-base": "^11.0.1",
"eslint-plugin-import": "^2.2.0",
"jasmine": "^2.5.3",
"nyc": "^11.0.3"
}
}