-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
55 lines (55 loc) · 1.13 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
{
"name": "got-cached",
"version": "1.2.1",
"description": "Got response cache for get requests",
"author": "janneh",
"license": "MIT",
"keywords": [
"got",
"http",
"https",
"request",
"cache"
],
"repository": {
"type": "git",
"url": "https://github.com/janneh/got-cached.git"
},
"bugs": {
"url": "https://github.com/janneh/got-cached/issues"
},
"scripts": {
"test": "npm run lint && babel-node ./test | faucet",
"lint": "eslint index.js",
"build": "babel -d ./build index.js",
"prepublish": "npm run build",
"postpublish": "rm -r ./build"
},
"dependencies": {
"got": "^6.3.0"
},
"devDependencies": {
"babel-cli": "^6.7.5",
"babel-eslint": "^6.0.3",
"babel-preset-es2015": "^6.6.0",
"babel-preset-stage-0": "^6.5.0",
"eslint": "^2.8.0",
"faucet": "0.0.1",
"nock": "^8.0.0",
"redis": "^2.5.3",
"redis-commands": "^1.1.0",
"sinon": "^1.17.3",
"tape": "^4.5.1",
"then-redis": "^2.0.0"
},
"babel": {
"presets": [
"es2015",
"stage-0"
]
},
"main": "build/index.js",
"files": [
"build"
]
}