-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
58 lines (58 loc) · 1.42 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
{
"name": "@deepstream/cache-memcached",
"version": "2.0.0",
"description": "A deepstream.io cache connector for memcached",
"main": "dist/src/connector.js",
"scripts": {
"tsc": "tsc",
"lint": "tslint --project .",
"lint:fix": "npm run lint -- --fix",
"test": "mocha --opts mocha.opts 'test/*.spec.ts'",
"coverage": "nyc mocha 'test/*.spec.ts' --exit",
"ci": "npm run coverage",
"docker": "docker run -p 11211:11211 memcached"
},
"repository": {
"type": "git",
"url": "https://github.com/deepstreamIO/deepstream.io-cache-memcached.git"
},
"author": "deepstreamHub GmbH",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/deepstreamIO/deepstream.io-cache-memcached/issues"
},
"homepage": "http://deepstream.io",
"dependencies": {
"@deepstream/types": "^1.0.3",
"memcached": "2.2.2"
},
"devDependencies": {
"@deepstream/protobuf": "^1.0.1",
"@types/memcached": "^2.2.6",
"@types/mocha": "^5.2.7",
"@types/node": "^12.11.7",
"chai": "^4.2.0",
"coveralls": "^3.0.7",
"mocha": "^6.2.2",
"nyc": "^14.1.1",
"ts-node": "^8.4.1",
"tslint": "^5.20.0",
"typescript": "^3.6.4"
},
"nyc": {
"include": [
"src/*.ts"
],
"extension": [
".ts"
],
"require": [
"ts-node/register/transpile-only"
],
"reporter": [
"lcov"
],
"sourceMap": true,
"instrument": true
}
}