forked from ZEISS/appinsights-express-middleware
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.35 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
{
"name": "appinsights-express-middleware",
"version": "0.1.0",
"description": "Middleware for handling Microsoft Application Insights inside an express application.",
"author": "Kristof Dreier",
"license": "MIT",
"repository": {
"type": "git",
"url": "git@github.com:ZEISS/appinsights-express-middleware.git"
},
"main": "dist",
"types": "dist",
"scripts": {
"test": "yarn lint && yarn test:unit",
"lint": "tslint -c tslint.json 'src/**/*.ts'",
"build": "rimraf dist && tsc",
"test:unit": "cross-env NODE_ENV=test jest src",
"test:watch": "yarn test:unit -- --watch"
},
"lint-staged": {
"*.{ts,json,css,md}": [
"prettier --write",
"git add"
]
},
"devDependencies": {
"@types/express": "^4.11.1",
"@types/jest": "^21.1.2",
"@types/node": "^9.4.6",
"@types/uuid": "^3.4.3",
"applicationinsights": "^1.0.2",
"cross-env": "^5.1.3",
"express": "^4.16.2",
"husky": "^0.14.3",
"jest": "^21.2.1",
"lint-staged": "^7.0.0",
"prettier": "^1.7.4",
"rimraf": "^2.6.2",
"ts-jest": "^21.1.2",
"tslint": "^5.9.1",
"tslint-config-prettier": "^1.5.0",
"tslint-plugin-prettier": "^1.3.0",
"typescript": "^2.5.3"
},
"peerDependencies": {
"applicationinsights": "^1.0.1",
"express": "^4.16.2"
},
"dependencies": {
"uuid": "^3.2.1"
}
}