-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
44 lines (44 loc) · 1.19 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
{
"name": "browserify-persist-fs",
"version": "1.2.2",
"description": "Efficient and stable persistent cache for browserify",
"main": "index.js",
"scripts": {
"test": "npm run lint && npm run coverage",
"release": "./node_modules/.bin/standard-version",
"lint": "./node_modules/.bin/standard",
"unit": "./node_modules/.bin/tap -- test/*.js",
"coverage": "./node_modules/.bin/tap --coverage -- test/*.js"
},
"keywords": [
"browserify",
"cache",
"fs",
"persistant",
"fast"
],
"author": "Martin Heidegger <martin.heidegger@gmail.com>",
"license": "MIT",
"dependencies": {
"after": "^0.8.2",
"mkdirp": "^0.5.1",
"xtend": "^4.0.1"
},
"devDependencies": {
"bluebird": "^3.4.7",
"module-deps": "^6.0.0",
"os-tmpdir": "^1.0.2",
"rimraf": "^2.5.4",
"standard": "^10.0.3",
"standard-version": "^4.3.0",
"tap": "^11.1.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/martinheidegger/browserify-persist-fs.git"
},
"bugs": {
"url": "https://github.com/martinheidegger/browserify-persist-fs/issues"
},
"homepage": "https://github.com/martinheidegger/browserify-persist-fs#readme"
}