-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.78 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
{
"name": "crashpad",
"version": "2.0.1",
"description": "Express middleware for Boom errors",
"author": "Good Eggs <[email protected]>",
"contributors": [
"Max Edmands <[email protected]>"
],
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "public"
},
"license": "MIT",
"keywords": [
"express boom"
],
"main": "lib/index.js",
"repository": {
"type": "git",
"url": "git://github.com/goodeggs/crashpad.git"
},
"homepage": "https://github.com/goodeggs/crashpad",
"bugs": "https://github.com/goodeggs/crashpad/issues",
"dependencies": {
"@hapi/boom": "^9.1.4",
"@types/express": "^4.17.13"
},
"scripts": {
"build": "yarn run clean && yarn run build:src && yarn run build:types",
"build:src": "babel --extensions .ts,.js,.jsx,.tsx --source-maps --ignore 'src/*.test.ts' --out-dir lib/ src/",
"build:types": "tsc --project tsconfig.declarations.json",
"clean": "rm -rf lib",
"lint": "getk run lint-es .",
"lint:fix": "getk run fix-es .",
"prepublishOnly": "yarn run build",
"test": "yarn run lint && yarn run typecheck && yarn run test:unit",
"test:unit": "mocha --require @babel/polyfill --require .register.ts --extension ts,js,jsx,tsx",
"typecheck": "tsc"
},
"devDependencies": {
"@babel/cli": "^7.15.7",
"@babel/core": "^7.15.8",
"@babel/polyfill": "^7.12.1",
"@babel/preset-env": "^7.15.8",
"@babel/preset-typescript": "^7.15.0",
"@babel/register": "^7.15.3",
"@goodeggs/toolkit": "^4.0.4",
"@goodeggs/tsconfig": "^1.0.0",
"@types/chai": "^4.2.22",
"@types/mocha": "^9.0.0",
"@types/request": "^2.48.7",
"chai": "^4.3.4",
"express": "^4.17.1",
"mocha": "^9.1.2",
"request": "^2.88.2",
"typescript": "^4.4.3"
}
}