-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 941 Bytes
/
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
{
"name": "http-config-cache",
"version": "1.0.2",
"description": "Cache a remote config! Supports JSON.",
"main": "lib/index.js",
"scripts": {
"build": "babel src -d lib",
"test": "npm run build && ./node_modules/.bin/mocha --reporter spec --timeout 25000",
"lint": "./node_modules/.bin/eslint src/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Restocks/http-config-cache.git"
},
"author": "Restocks, Inc.",
"license": "MIT",
"bugs": {
"url": "https://github.com/Restocks/http-config-cache/issues"
},
"homepage": "https://github.com/Restocks/http-config-cache#readme",
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-preset-es2015": "^6.18.0",
"eslint": "^3.8.1",
"eslint-config-airbnb-base": "^9.0.0",
"eslint-plugin-import": "^2.0.1",
"mocha": "^3.1.2"
},
"dependencies": {
"request": "^2.76.0",
"timed-cache": "^1.0.5"
}
}