-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.57 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
{
"name": "@verdigris/nitrous-driver-memcached",
"version": "1.0.0",
"description": "Memcached driver for nitrous.js",
"author": "Andrew Jo <[email protected]> (https://verdigris.co)",
"license": "BSD-3-Clause",
"main": "dist/index.js",
"scripts": {
"test": "mocha",
"coverage": "nyc mocha",
"lint": "eslint --ext .ts .",
"format": "prettier src/**/*.ts --write",
"build": "tsc -b src/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/VerdigrisTech/nitrous-driver-memcached.git"
},
"bugs": {
"url": "https://github.com/VerdigrisTech/nitrous-driver-memcached/labels/bug"
},
"homepage": "https://github.com/VerdigrisTech/nitrous-driver-memcached#readme",
"engines": {
"node": ">=10.0.0"
},
"peerDependencies": {
"@verdigris/nitrous": "2.x"
},
"dependencies": {
"memcached": "^2.2.2"
},
"devDependencies": {
"@types/chai": "^4.2.12",
"@types/mocha": "^8.0.3",
"@types/redis": "^2.8.26",
"@typescript-eslint/eslint-plugin": "^3.10.1",
"@typescript-eslint/parser": "^3.10.1",
"@verdigris/nitrous": "^2.0.0",
"chai": "^4.2.0",
"eslint": "^7.7.0",
"husky": "^4.2.5",
"lint-staged": "^10.2.13",
"mocha": "^8.1.2",
"nyc": "^15.1.0",
"prettier": "^2.1.0",
"ts-node": "^9.0.0",
"tsconfig-paths": "^3.9.0",
"typescript": "^3.9.7"
},
"keywords": [
"node",
"cache",
"caching",
"framework",
"memcached",
"typescript"
],
"types": "dist/index.d.ts",
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}