-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.06 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
{
"name": "@nielsendigital/ms-common",
"version": "2.0.0",
"description": "Shared library for ticketing microservices exercise",
"main": "./build/index.js",
"types": "./build/index.d.ts",
"files": [
"build/**/*"
],
"scripts": {
"clean": "del ./build/*",
"build": "npm run clean && tsc",
"pub": "npm version patch && npm run build && npm publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/wjn/ms-common.git"
},
"keywords": [],
"author": "Will Nielsen",
"license": "ISC",
"bugs": {
"url": "https://github.com/wjn/ms-common/issues"
},
"homepage": "https://github.com/wjn/ms-common#readme",
"devDependencies": {
"del-cli": "^3.0.1",
"typescript": "^4.0.3"
},
"dependencies": {
"@nielsendigital/logit": "^1.0.2",
"@types/cookie-session": "^2.0.41",
"@types/express": "^4.17.8",
"@types/jsonwebtoken": "^8.5.0",
"cookie-session": "^1.4.0",
"express": "^4.17.1",
"express-validator": "^6.6.1",
"jsonwebtoken": "^8.5.1",
"node-nats-streaming": "^0.3.2"
}
}