forked from VilledeMontreal/express-idempotency
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 2.07 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
70
71
{
"name": "express-idempotency",
"version": "1.0.53",
"description": "",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"scripts": {
"compile": "./node_modules/.bin/tsc --build tsconfig.dist.json",
"test": "./node_modules/.bin/tsc --build tsconfig.test.json && nyc mocha",
"lint": "./node_modules/.bin/eslint ./src --ext .ts,.tsx",
"lint:fix": "./node_modules/.bin/eslint ./src --ext .ts,.tsx --fix",
"prettier": "./node_modules/.bin/prettier --check ./src",
"prettier:fix": "./node_modules/.bin/prettier --write ./src"
},
"repository": {
"type": "git",
"url": "git+https://github.com/knockk-app/express-idempotency.git"
},
"keywords": [
"express",
"middleware",
"idempotent",
"idempotency"
],
"author": "Ville de Montréal",
"license": "MIT",
"homepage": "https://github.com/VilledeMontreal/express-idempotency",
"devDependencies": {
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"@istanbuljs/nyc-config-typescript": "^1.0.1",
"@types/chai": "^4.2.11",
"@types/deep-equal": "^1.0.1",
"@types/express": "^4.17.13",
"@types/express-serve-static-core": "^4.17.26",
"@types/faker": "^4.1.12",
"@types/mocha": "^7.0.2",
"@types/serve-static": "1.13.9",
"@types/sinon": "^9.0.4",
"@typescript-eslint/eslint-plugin": "^3.2.0",
"@typescript-eslint/parser": "^3.2.0",
"chai": "^4.2.0",
"eslint": "^7.2.0",
"eslint-config-prettier": "^6.11.0",
"faker": "^4.1.0",
"husky": "^4.2.5",
"mocha": "^7.2.0",
"node-mocks-http": "^1.8.1",
"nyc": "^15.0.1",
"prettier": "2.0.5",
"sinon": "^9.0.2",
"source-map-support": "^0.5.19",
"ts-node": "^8.10.2",
"typescript": "^3.8.3"
},
"files": [
"dist"
],
"dependencies": {
"autobind-decorator": "^2.4.0",
"deep-equal": "^2.0.3",
"http-status-codes": "^1.4.0"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "",
"pre-push": "npm run prettier && npm run lint && npm test"
}
}
}