-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
110 lines (110 loc) · 2.74 KB
/
package.json
File metadata and controls
110 lines (110 loc) · 2.74 KB
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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
{
"name": "heiss",
"version": "0.2.2",
"description": "Static server, which implements hot module replacement for native ES2015 modules.",
"main": "index.js",
"keywords": [
"modules",
"es6",
"es2015",
"hmr",
"hot",
"reload",
"livereload"
],
"repository": {
"type": "git",
"url": "git+https://github.com/SevInf/hmr-native.git"
},
"bugs": {
"url": "https://github.com/SevInf/hmr-native/issues"
},
"homepage": "https://github.com/SevInf/hmr-native#readme",
"author": "Sergey Tatarintsev <sergey@tatarintsev.me> (https://github.com/SevInf)",
"license": "MIT",
"bin": {
"heiss": "./bin/heiss"
},
"engines": {
"node": "^8.0.0"
},
"files": [
"bin",
"lib"
],
"scripts": {
"build": "tsc --build",
"release": "standard-version",
"start": "npm run build && bin/heiss example",
"lint:tslint": "tslint src/**/*.ts test/**/*.ts",
"lint:prettier": "prettier -l src/**/*.ts test/**/*.ts README.md",
"lint": "npm-run-all lint:*",
"format": "prettier --write src/**/*.ts test/**/*.ts README.md",
"precommit": "npm run lint",
"commitmsg": "commitlint -E GIT_PARAMS",
"prerelease": "npm-run-all -s clean build test",
"clean": "rimraf lib",
"test": "jest"
},
"dependencies": {
"acorn": "^5.7.1",
"acorn-dynamic-import": "^3.0.0",
"acorn-import-meta": "^0.2.1",
"fs-extra": "^7.0.0",
"koa": "^2.5.2",
"koa-mount": "^3.0.0",
"koa-route": "^3.2.0",
"koa-send": "^5.0.0",
"koa-static": "^5.0.0",
"koa-websocket": "^5.0.1",
"sane": "^3.0.0",
"yargs": "^12.0.1"
},
"devDependencies": {
"@commitlint/cli": "^7.0.0",
"@commitlint/config-conventional": "^7.0.1",
"@commitlint/travis-cli": "^7.0.0",
"@types/acorn": "^4.0.3",
"@types/estree": "0.0.39",
"@types/fs-extra": "^5.0.4",
"@types/jest": "^23.3.1",
"@types/koa-mount": "^3.0.1",
"@types/koa-route": "^3.2.4",
"@types/koa-send": "^4.1.1",
"@types/koa-static": "^4.0.0",
"@types/koa-websocket": "^5.0.2",
"@types/node": "^8.10.26",
"@types/sane": "^2.0.0",
"@types/ws": "^6.0.0",
"@types/yargs": "^11.1.1",
"husky": "^0.14.3",
"jest": "^23.5.0",
"npm-run-all": "^4.1.3",
"prettier": "^1.14.2",
"rimraf": "^2.6.2",
"standard-version": "^4.4.0",
"ts-jest": "^23.1.3",
"tslint": "^5.11.0",
"tslint-config-prettier": "^1.15.0",
"typescript": "^3.0.1"
},
"jest": {
"globals": {
"ts-jest": {
"tsConfigFile": "<rootDir>/test/tsconfig.json"
}
},
"transform": {
"^.+\\.ts$": "ts-jest"
},
"testMatch": [
"<rootDir>/test/**/*.test.ts"
],
"moduleFileExtensions": [
"ts",
"js",
"json",
"node"
]
}
}