-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.68 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.68 KB
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
{
"name": "swift-cache",
"description": "Simple fast memory cache for NodeJS.",
"keywords": [
"buffer",
"cache",
"caching",
"memory",
"memcache",
"memcached",
"msgpack",
"redis",
"typescript"
],
"version": "1.2.0",
"author": "@oliviercuyp",
"main": "dist/lib/SwiftCache.js",
"scripts": {
"build": "tsc",
"start": "ts-node --files --pretty lib/SwiftCache.ts",
"test": "mocha --opts tests/mocha.opts",
"test:lint": "eslint 'lib/**/*.ts'",
"test:type-check": "tsc --noEmit",
"test:cover": "nyc --reporter=text-summary --reporter=html npm test",
"test:all": "npm run test:type-check & npm run test:cover",
"test:coveralls": "nyc --reporter=text-lcov npm test | coveralls",
"preversion": "npm run test:lint && npm run test:type-check && npm run test"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/oliviercuyp/swift-cache.git"
},
"bugs": {
"url": "https://github.com/oliviercuyp/swift-cache/issues"
},
"homepage": "https://github.com/oliviercuyp/swift-cache#readme",
"dependencies": {
"msgpack-lite": "^0.1.26",
"tslib": "^1.9.3"
},
"devDependencies": {
"@types/chai": "^4.1.4",
"@types/mocha": "^5.2.5",
"@types/msgpack-lite": "^0.1.6",
"@types/node": "^8.10.21",
"@types/sinon": "^5.0.1",
"chai": "^4.1.2",
"coveralls": "^3.0.2",
"eslint": "^5.2.0",
"eslint-config-google": "^0.9.1",
"eslint-plugin-typescript": "^0.12.0",
"mocha": "^5.2.0",
"nyc": "^12.0.2",
"sinon": "^6.1.4",
"source-map-support": "^0.5.6",
"ts-node": "^7.0.0",
"typescript": "^2.9.2",
"typescript-eslint-parser": "^16.0.1"
}
}