This repository has been archived by the owner on Jan 2, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
64 lines (64 loc) · 1.8 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
{
"name": "express-transform-bare-module-specifiers",
"version": "1.0.3",
"description": "Express middleware to transform bare module specifiers on-the-fly.",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"scripts": {
"pretest": "npm run static",
"test": "jest --coverage",
"static": "tslint -c tslint.json 'src/**/*.ts' '__tests__/**/*.ts'",
"prebuild": "trash dist && npm t",
"build": "tsc -b tsconfig.json",
"prerelease": "npm run build",
"release": "standard-version",
"postrelease": "npm publish && git push --follow-tags"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nodecg/express-transform-bare-module-specifiers.git"
},
"keywords": [
"express",
"transform",
"bare",
"module",
"specifiers"
],
"author": "Alex Van Camp <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/nodecg/express-transform-bare-module-specifiers/issues"
},
"homepage": "https://github.com/nodecg/express-transform-bare-module-specifiers#readme",
"devDependencies": {
"@types/babel__core": "^7.1.6",
"@types/content-type": "^1.1.2",
"@types/express": "^4.16.0",
"@types/get-port": "^4.0.0",
"@types/got": "^9.2.0",
"@types/jest": "^23.3.9",
"@types/node": "^10.12.5",
"express": "^4.16.4",
"get-port": "^4.0.0",
"got": "^9.3.2",
"jest": "^23.6.0",
"standard-version": "^4.4.0",
"trash-cli": "^1.4.0",
"ts-jest": "^23.10.4",
"ts-node": "^7.0.1",
"tslint": "^5.11.0",
"tslint-xo": "^0.9.0",
"typescript": "^3.1.6"
},
"dependencies": {
"@babel/core": "^7.8.7",
"@types/lru-cache": "^4.1.1",
"babel-plugin-bare-import-rewrite": "^1.0.0",
"content-type": "^1.0.4",
"lru-cache": "^4.1.3"
},
"files": [
"dist"
]
}