-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.08 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
{
"name": "cachish",
"version": "1.0.0",
"description": "A simple name/value expiring evented cache",
"main": "index.js",
"scripts": {
"test": "npm run lint && tape src/test/index.js | tap-spec",
"lint": "standard src/**",
"format": "standard-format -w src/**.js",
"compile": "babel -d dist src",
"prepublish": "npm run compile"
},
"repository": {
"type": "git",
"url": "git+https://github.com/vinniegarcia/cachish.git"
},
"keywords": [
"cache",
"expire",
"timeout",
"evented"
],
"author": "vinnie garcia <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/vinniegarcia/cachish/issues"
},
"homepage": "https://github.com/vinniegarcia/cachish#readme",
"devDependencies": {
"babel": "^6.3.13",
"babel-cli": "^6.3.13",
"babel-plugin-transform-es2015-modules-commonjs": "^6.3.13",
"babel-preset-es2015": "^6.3.13",
"babel-preset-stage-0": "^6.3.13",
"standard": "^5.4.1",
"standard-format": "^2.1.0",
"tap-spec": "^4.1.1",
"tape": "^4.2.2"
},
"dependencies": {
}
}