-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.38 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
{
"name": "p-async-cache",
"version": "1.0.3",
"description": "Cache the promise lookups and avoid fetching the same thing more than necessary",
"main": "index.js",
"scripts": {
"build": "babel src --out-dir lib",
"test": "npm run build && node --harmony ./node_modules/.bin/ava --verbose --timeout=10s",
"prepublish": "npm run build"
},
"repository": {
"type": "git",
"url": "git://github.com/kaelzhang/p-async-cache.git"
},
"keywords": [
"p-async-cache",
"promise",
"async",
"cache",
"lru-cache"
],
"engines": {
"node": ">=4"
},
"author": "kaelzhang",
"license": "MIT",
"bugs": {
"url": "https://github.com/kaelzhang/p-async-cache/issues"
},
"ava": {
"require": "babel-register",
"babel": {
"babelrc": true
}
},
"devDependencies": {
"ava": "^0.16.0",
"babel-cli": "^6.16.0",
"babel-plugin-syntax-trailing-function-commas": "^6.13.0",
"babel-plugin-transform-class-properties": "^6.16.0",
"babel-plugin-transform-es2015-modules-commonjs": "^6.16.0",
"babel-plugin-transform-exponentiation-operator": "^6.8.0",
"babel-plugin-transform-inline-environment-variables": "^6.8.0",
"babel-plugin-transform-object-rest-spread": "^6.16.0",
"babel-preset-es2015": "^6.16.0",
"delay": "^1.3.1"
},
"dependencies": {
"lru-cache": "^4.0.2",
"pending-queue": "^1.2.0"
}
}