-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
67 lines (67 loc) · 1.9 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
{
"name": "rest-tagging",
"description": "A REST interface for redis-tagging",
"version": "2.0.1",
"author": "P. Liess <[email protected]>",
"engines": {
"node": ">= 14.0.0"
},
"files": [
"lib/**/*"
],
"scripts": {
"start": "node lib/index.js",
"test": "mocha --require ts-node/register ./test/test.ts",
"prebuild": "npm run lint",
"build": "tsc",
"lint": "eslint --fix --ext .ts index.ts test/test.ts",
"prepare": "npm run build",
"prepublishOnly": "npm test && npm run lint",
"preversion": "npm run lint",
"postversion": "echo 'IMPORTANT: Run `git push && git push --tags` to push created version to repo and `npm publish` to publish to npm'"
},
"dependencies": {
"express": "^4.17.3",
"morgan": "^1.10.0",
"redis-tagging": "^2.0.1"
},
"devDependencies": {
"@tsconfig/node14": "^1.0.1",
"@types/express": "^4.17.13",
"@types/mocha": "^9.1.0",
"@types/morgan": "^1.9.3",
"@types/node": "^17.0.25",
"@typescript-eslint/eslint-plugin": "^5.20.0",
"@typescript-eslint/parser": "^5.20.0",
"async": "*",
"chai": "^4.3.6",
"chai-http": "^4.3.0",
"eslint": "^8.13.0",
"eslint-plugin-jsdoc": "^39.2.7",
"mocha": "2.3.4",
"should": "8.2.0",
"ts-node": "^10.7.0",
"typescript": "^4.6.3"
},
"keywords": [
"rest",
"http",
"tagging",
"tags",
"redis",
"php",
"coldfusion",
"ruby",
"asp",
".net",
"python"
],
"repository": {
"type": "git",
"url": "http://github.com/smrchy/rest-tagging.git"
},
"bugs": {
"url": "http://github.com/smrchy/rest-tagging/issues"
},
"homepage": "http://github.com/smrchy/rest-tagging#readme"
}