-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.53 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.53 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
{
"name": "cache-wrapper",
"description": "System aggregator and data logic layer",
"version": "2.2.0",
"homepage": "https://github.com/holidayextras/cache-wrapper",
"author": {
"name": "Shortbreaks",
"email": "shortbreaksdev@holidayextras.com"
},
"private": true,
"repository": {
"type": "git",
"url": "git@github.com:holidayextras/cache-wrapper.git"
},
"license": "MIT",
"main": "lib/cacheWrapper",
"engines": {
"node": ">=6.10.3"
},
"scripts": {
"ci": "echo 'nothing to do here'",
"test:coverage": "istanbul cover _mocha",
"lint": "standard",
"start": "node index.js",
"prerelease": "node_modules/deployment-helpers/nodeApps/preRelease.sh",
"pretest": "npm run prerelease",
"test": "npm run lint && npm run test:coverage",
"posttest": "istanbul check-coverage",
"deploy": "./scripts/deploy.sh"
},
"dependencies": {
"catbox": "7.1.5",
"catbox-redis": "3.0.2",
"lodash": "4.17.4",
"q": "1.5.0",
"redis": "2.7.1"
},
"devDependencies": {
"chai": "^4.1.0",
"chai-as-promised": "^7.1.1",
"deployment-helpers": "git+ssh://git@github.com:holidayextras/deployment-helpers.git",
"dirty-chai": "^2.0.1",
"istanbul": "^0.4.5",
"mocha": "^3.5.0",
"mock-redis-client": "^0.91.13",
"redis-mock": "^0.20.0",
"rewire": "^2.5.2",
"sinon": "^2.4.1",
"sinon-chai": "^2.12.0",
"standard": "^10.0.2"
},
"standard": {
"env": {
"mocha": true
}
},
"owner": "buying",
"platform": "custom",
"ci": "dockyard"
}