-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
69 lines (69 loc) · 2.48 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "incache",
"version": "7.2.1",
"description": "Powerful key/value in-memory storage or on disk to persist some data",
"main": "index.js",
"browser": "dist/incache.js",
"scripts": {
"version:major": "webpack --env.major && npm run-script doc && version-to-tag.sh && npm publish",
"version:minor": "webpack --env.minor && npm run-script doc && version-to-tag.sh && npm publish",
"version:patch": "webpack --env.patch && npm run-script doc && version-to-tag.sh && npm publish",
"build": "webpack --progress",
"mocha.test": "mocha test",
"test": "istanbul cover ./node_modules/mocha/bin/_mocha --report lcovonly -- -R spec && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage",
"doc": "jsdoc2md --no-gfm src/incache.js > api.md",
"benchmark:app": "node ./test/app/index.js",
"benchmark:koa": "node ./node_modules/autocannon/autocannon -c 100 -d 1 -p 10 127.0.0.1:3188/benchmark/notCached",
"benchmark:cache": "node ./node_modules/autocannon/autocannon -c 100 -d 1 -p 10 127.0.0.1:3188/benchmark/cached"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fabioricali/incache.git"
},
"keywords": [
"cache",
"object",
"global",
"storage",
"share",
"node-cache",
"localstorage",
"session",
"database",
"db"
],
"author": "Fabio Ricali",
"license": "MIT",
"bugs": {
"url": "https://github.com/fabioricali/incache/issues"
},
"homepage": "https://github.com/fabioricali/incache#readme",
"devDependencies": {
"autocannon": "^0.16.5",
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-preset-es2015": "^6.24.1",
"bejs": "^1.12.2",
"browser-env": "^3.2.0",
"coveralls": "^2.13.1",
"execution-time": "^1.2.0",
"istanbul": "^0.4.5",
"jsdoc-to-markdown": "^3.0.0",
"koa": "^2.3.0",
"koa-router": "^7.2.1",
"mocha": "^3.5.0",
"mocha-lcov-reporter": "^1.3.0",
"mock-local-storage": "^1.0.5",
"typis": "^1.0.2",
"unminified-webpack-plugin": "^1.2.0",
"webpack": "^3.5.5",
"webpack-auto-inject-version": "^0.5.14"
},
"dependencies": {
"clone": "^2.1.1",
"flak": "^1.0.0",
"object-sizeof": "^1.2.0",
"uuid": "^3.1.0",
"write": "^1.0.3"
}
}