This repository was archived by the owner on Apr 29, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.32 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.32 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
{
"name": "@eq8/mvp-boot",
"version": "0.0.0",
"description": "TBD",
"main": "index.js",
"engines": {
"node": ">=8.0.0"
},
"scripts": {
"precommit": "npm run test:lint",
"prepush": "npm run test:lint && npm run test:unit",
"test": "npm run test:lint && npm run test:unit && npm run test:integration",
"test:lint": "eslint --cache --ext .js index.js lib",
"test:unit": "tape test/test.unit.js | faucet",
"test:integration": "tape test/test.integration.js | faucet"
},
"repository": {
"type": "git",
"url": "git+https://github.com/eq8/mvp-boot.git"
},
"keywords": [
"eq8",
"mvp-boot"
],
"author": "bbartolome",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/eq8/mvp-boot/issues"
},
"homepage": "https://github.com/eq8/mvp-boot#readme",
"dependencies": {
"body-parser": "1.18.3",
"express": "4.16.3",
"immutable": "3.8.2",
"lodash": "4.17.10",
"lru-cache": "4.1.3",
"request": "2.87.0",
"requirejs": "2.3.5",
"rethinkdb": "2.3.3",
"semver": "5.5.0",
"url-parse": "1.4.3",
"winston": "3.0.0",
"yargs": "12.0.1"
},
"devDependencies": {
"eslint": "5.2.0",
"eslint-config-eslint": "5.0.1",
"eslint-plugin-node": "7.0.1",
"faucet": "0.0.1",
"husky": "0.14.3",
"tape": "4.9.1"
}
}