-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
78 lines (78 loc) · 2.04 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
72
73
74
75
76
77
78
{
"name": "one-time-secret",
"version": "0.0.0",
"private": true,
"main": "dist/src/index.js",
"typings": "dist/src/index.d.ts",
"engines": {
"node": ">=14.0.0"
},
"scripts": {
"build": "tsc --rootDir ./",
"build:watch": "tsc --rootDir ./ -w",
"build:test": "tsc --rootDir ./ ",
"circular": "madge --circular dist/",
"complexity": "./node_modules/.bin/ts-complexity --max-complexity=20 --pattern './{src,bin}/**/*.ts'",
"clean": "rm -fr dist",
"lint": "tslint -p .",
"postinstall": "npm run build",
"prebuild": "npm run clean",
"pretest": "npm run lint && npm run build:test",
"test:spec": "TZ=UTC jest spec --ci --runInBand --reporters=default --reporters=jest-junit",
"test:e2e": "./e2e/test.sh",
"test:watch": "npm run test --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/freight-hub/one-time-secret.git"
},
"description": "Store secrets for one-time-access.",
"author": "Brian Graham",
"keywords": [],
"dependencies": {
"@types/winston-syslog": "^2.0.4",
"typescript": "^4.4.3",
"winston": "^3.3.3",
"winston-syslog": "^2.4.4"
},
"devDependencies": {
"@types/jest": "^26.0.24",
"@types/node": "^16.9.1",
"jest": "^26.6.3",
"jest-junit": "^12.2.0",
"madge": "^5.0.1",
"ts-complexity": "0.0.3",
"ts-jest": "^26.5.6",
"tslint": "^6.1.3",
"tslint-config-standard": "^9.0.0",
"typescript-eslint-parser": "^22.0.0"
},
"jest": {
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"collectCoverageFrom": [
"src/**/*.{ts,tsx}",
"!src/templates/*",
"!src/env.ts",
"!src/logger.ts",
"!src/WebControllers/router.ts",
"!src/dependencyInjection.ts"
],
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(tsx?)$",
"testPathIgnorePatterns": [
"/node_modules/",
"test.ts"
],
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json"
],
"setupFilesAfterEnv": [
"<rootDir>/test.ts"
]
}
}