-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
93 lines (93 loc) · 2.19 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "intervene",
"version": "4.0.0",
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"bin": {
"intervene": "dist/src/cli.js"
},
"license": "MIT",
"scripts": {
"prepare": "npm run build",
"build": "tsc -p . -d && cp src/brotli-decode.* dist/src",
"test": "npm run unit-test && npm run integration-test",
"unit-test": "jest src",
"integration-test": "jest integration-tests",
"semantic-release": "semantic-release"
},
"files": [
"dist",
"src",
"README.md"
],
"dependencies": {
"@hapi/hapi": "^21.3.2",
"@types/bluebird": "3.5.34",
"@types/node": "^18.0.0",
"@types/node-forge": "^0.8.2",
"@types/prettier": "^1.16.3",
"@types/yargs": "^12.0.0",
"axios": "^0.21.2",
"bluebird": "^3.5.3",
"chalk": "^2.4.1",
"eventsource": "^1.1.1",
"get-port": "^4.0.0",
"hostile": "^1.3.2",
"iconv-lite": "^0.4.24",
"joi": "^17.4.0",
"mkdirp": "^1.0.4",
"node-forge": "^0.10.0",
"sudo-prompt": "^8.2.3",
"susie": "^3.0.0",
"ts-jest": "^29.1.1",
"ts-node": "^8.10.1",
"typescript": "4.9.5",
"why-is-node-running": "^2.0.3",
"yargs": "^12.0.5"
},
"devDependencies": {
"@semantic-release/changelog": "^5.0.1",
"@semantic-release/git": "^9.0.0",
"@types/jest": "^29.5.10",
"http-server": "^0.12.3",
"jest": "^29.7.0",
"lodash": "^4.17.21",
"magicpen-media": "^1.5.1",
"mocha": "^7.1.2",
"prettier": "^1.14.3",
"semantic-release": "^17.4.3",
"sinon": "^6.3.4",
"unexpected": "^10.17.2",
"unexpected-sinon": "^10.10.1"
},
"prettier": {
"singleQuote": true,
"arrowParens": "always"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node",
"setupFilesAfterEnv": [
"<rootDir>/test-helpers/init.js"
],
"moduleFileExtensions": [
"ts",
"js",
"node"
],
"testPathIgnorePatterns": [
"/dist/",
"/node_modules/",
"/.cache/"
],
"modulePathIgnorePatterns": [
"/dist/",
"/node_modules/",
"/.cache/"
],
"testMatch": [
"<rootDir>/src/**/__tests__/*.spec.ts",
"<rootDir>/integration-tests/**/*.spec.ts"
]
}
}