-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.44 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
{
"name": "http-expose",
"version": "0.2.4",
"description": "Static HTTP server, useable through command line & as a lib",
"main": "./dist/server.js",
"bin": {
"expose": "./dist/index.js"
},
"repository": {
"type": "git",
"url": "https://github.com/Vuzi/http-expose.git"
},
"scripts": {
"build": "tsc --build && tsc-alias",
"start": "tsc --build && tsc-alias && node ./dist/index.js",
"clean": "rm -rf node_modules && rm -rf dist && rm out && rm example-dist",
"reinstall": "npm run clean && npm install",
"test": "tsc-alias && jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage=true --coverageReporters='text-summary'"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@types/fs-extra": "^9.0.11",
"@types/jest": "^26.0.23",
"@types/marked": "^2.0.3",
"@types/mime-types": "^2.1.0",
"@types/mock-fs": "^4.13.0",
"@types/node": "^15.6.0",
"@types/yargs": "^17.0.0",
"jest": "^27.0.1",
"mock-fs": "^5.0.0",
"terminal-link": "^2.1.1",
"ts-jest": "^27.0.0",
"tsc-alias": "^1.2.11",
"typescript": "^4.2.4"
},
"dependencies": {
"chalk": "4.1.2",
"fs-extra": "10.0.0",
"http-terminator": "3.0.0",
"liquidjs": "9.25.0",
"marked": "4.0.10",
"mime-types": "2.1.30",
"space-lift": "1.0.0",
"space-monad": "1.0.0",
"tiny-typed-emitter": "2.0.3",
"yaml": "1.10.2",
"yargs": "17.0.1"
}
}