-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.99 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
{
"name": "@unumid/server-sdk",
"version": "4.2.1",
"main": "build/index.js",
"repository": "[email protected]:UnumID/Server-SDK-TypeScript.git",
"homepage": "https://docs.unum.id/server-sdk/",
"author": "UnumID <[email protected]>",
"license": "MIT",
"private": false,
"scripts": {
"pm2": "pm2",
"lint": "eslint \"src/**/*.ts\" \"test/**/*.ts\"",
"build": "rm -rf build/ && tsc && cp src/types.d.ts build/ && cp package.json build/",
"jest": "jest --forceExit --runInBand",
"test": "yarn run build && yarn run jest",
"start": "node build/index.js",
"debug": "ts-node src/index.ts"
},
"devDependencies": {
"@types/express": "^4.17.7",
"@types/jest": "^26.0.0",
"@types/lodash": "^4.14.168",
"@types/node-fetch": "^2.5.7",
"@types/supertest": "^2.0.10",
"@types/winston": "^2.4.4",
"@types/winston-syslog": "^2.0.3",
"@typescript-eslint/eslint-plugin": "^3.7.0",
"@typescript-eslint/parser": "^3.7.0",
"eslint": "^7.5.0",
"eslint-config-semistandard": "^15.0.1",
"eslint-config-standard": "^14.1.1",
"eslint-import-resolver-typescript": "^2.0.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"jest": "^26.1.0",
"supertest": "^4.0.2",
"ts-jest": "^26.5.4",
"typedoc": "^0.23.12",
"typescript": "^3.9.7"
},
"dependencies": {
"@types/semver": "^7.3.4",
"@types/uuid": "^8.3.0",
"@unumid/library-crypto": "2.1.1",
"@unumid/library-crypto-v1": "npm:@unumid/[email protected]",
"@unumid/types": "4.0.2",
"@unumid/types-v3": "npm:@unumid/[email protected]",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"fast-json-stable-stringify": "^2.1.0",
"is-base64": "^1.1.0",
"lodash": "^4.17.21",
"node-fetch": "^2.6.7",
"runtypes": "~6.0.0",
"semver": "^7.3.5",
"ts-node": "^9.0.0",
"uuid": "^8.3.2",
"winston": "^3.3.3",
"winston-syslog": "^2.4.4"
}
}