-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.21 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
{
"name": "cashcow",
"version": "1.3.1",
"description": "cashcow is a smart cache fetcher that pools consumers and minimises memory usage",
"main": "index.js",
"directories": {
"test": "test"
},
"scripts": {
"test": "make test"
},
"author": "Alan Clarke <alan@qubit.com> (qubit.com)",
"repository": {
"type": "git",
"url": "git+https://github.com/QubitProducts/cashcow.git"
},
"license": "UNLICENSED",
"devDependencies": {
"es6-promise": "^3.2.1",
"expect.js": "^0.3.1",
"istanbul": "^0.4.4",
"karma": "^0.13.22",
"karma-chrome-launcher": "^0.2.2",
"karma-mocha": "^0.2.2",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^1.7.0",
"mocha": "^2.4.5",
"sinon": "^2.0.0-pre",
"sinon-expect": "^0.3.0",
"standard": "^6.0.8",
"webpack": "^1.12.14"
},
"dependencies": {},
"standard": {
"ignore": [
"node_modules"
],
"globals": [
"describe",
"beforeEach",
"afterEach",
"before",
"after",
"it"
]
},
"bugs": {
"url": "https://github.com/QubitProducts/cashcow/issues"
},
"homepage": "https://github.com/QubitProducts/cashcow#readme",
"keywords": [
"cache"
]
}