This repository was archived by the owner on Mar 4, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 1.96 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 1.96 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "Bivalve",
"version": "0.0.0-development",
"main": "index.js",
"scripts": {
"start": "npm-run-all --parallel start:*",
"start:build": "wmake --non-interactive",
"start:server": "micro-dev lib",
"prestart": "make -j4",
"test": "make test",
"heroku-postbuild": "git-version-infer && make && package-version-github-release",
"precommit": "flow check"
},
"author": "matthew.brennan@ft.com",
"dependencies": {
"@financial-times/n-es-client": "^1.5.1",
"@quarterto/git-version-infer": "^5.1.0",
"@quarterto/heroku-cluster": "^1.4.0",
"@quarterto/hr": "^1.0.0",
"@quarterto/micro-cors": "^1.2.0",
"@quarterto/package-version-github-release": "^1.2.0",
"@quarterto/tcp-fetch": "^1.0.0",
"cheerio": "^1.0.0-rc.2",
"dotenv": "^4.0.0",
"fastly-cli": "^0.5.0",
"flow-remove-types": "^1.2.3",
"http-errors": "^1.6.2",
"http-proxy": "^1.16.2",
"lodash.pick": "^4.4.0",
"lodash.pickby": "^4.6.0",
"micro": "^9.0.2"
},
"devDependencies": {
"@financial-times/n-flow-ft-content": "^1.0.2",
"@quarterto/promisify": "^1.0.0",
"chai": "^4.1.2",
"flow-bin": "^0.79.1",
"flow-coverage-report": "^0.4.0",
"husky": "^0.14.3",
"micro-dev": "^2.1.0",
"mocha": "^4.0.1",
"mocha-junit-reporter": "^1.15.0",
"mocha-multi": "^0.11.1",
"nock": "^9.1.4",
"npm-run-all": "^4.1.2",
"nyc": "^11.3.0",
"sinon": "^4.5.0",
"watch-make": "^2.3.0"
},
"engines": {
"node": "^8.5.0"
},
"nyc": {
"exclude": [
"lib/index.js",
"lib/controllers/index.js",
"test/*",
"src/*",
"cluster.js"
]
},
"directories": {
"lib": "lib",
"test": "test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Financial-Times/bivalve.git"
},
"bugs": {
"url": "https://github.com/Financial-Times/bivalve/issues"
},
"homepage": "https://github.com/Financial-Times/bivalve#readme",
"private": true
}