forked from guidesmiths/refdata
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
75 lines (75 loc) · 1.86 KB
/
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
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": "refdata",
"version": "0.1.0",
"description": "Client/Server for providing time series refdata",
"scripts": {
"lint": "eslint .",
"fix": "eslint --fix .",
"nsp": "nsp check",
"start": "node index.js",
"test": "mocha test",
"test-w": "mocha --watch test",
"qa": "npm run lint && npm test && npm run nsp",
"prepush": "npm run qa",
"prerelease": "prerelease",
"manifest": "make-manifest",
"deploy": "kube-deploy"
},
"repository": {
"type": "git",
"url": "git+https://github.com/guidesmiths/refdata.git"
},
"author": "GuideSmiths Ltd",
"bugs": {
"url": "https://github.com/guidesmiths/refdata/issues"
},
"homepage": "https://github.com/guidesmiths/refdata#readme",
"devDependencies": {
"chai": "^3.5.0",
"eslint": "^3.3.1",
"eslint-config-imperative-es6": "^1.0.0",
"eslint-plugin-mocha": "^4.3.0",
"husky": "^0.11.6",
"kube-deploy": "^0.1.1",
"make-manifest": "^1.0.0",
"mocha": "^3.0.2",
"nsp": "^2.6.1",
"prerelease-ftw": "^0.1.0"
},
"dependencies": {
"async": "^2.0.1",
"bunyan": "^1.8.1",
"chalk": "^1.1.3",
"confabulous": "^1.0.0",
"deep-freeze": "0.0.1",
"express": "^4.14.0",
"hogan.js": "^3.0.2",
"lodash.get": "^4.4.1",
"lodash.has": "^4.5.0",
"lodash.padend": "^4.6.1",
"lodash.set": "^4.3.1",
"on-headers": "^1.0.1",
"optional": "^0.1.3",
"parse-cache-control": "^1.0.1",
"parse-duration": "^0.1.1",
"prepper": "^0.2.0",
"ramda": "^0.21.0",
"request": "^2.75.0",
"require-all": "^2.0.0",
"systemic": "^0.6.0",
"systemic-domain-runner": "^0.1.4",
"systemic-express": "^1.1.0",
"uw-lib-prometheus.js": "^1.0.5"
},
"main": "index.js",
"directories": {
"test": "test"
},
"license": "ISC",
"keywords": [
"refdata",
"time",
"series",
"http"
]
}