-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
72 lines (72 loc) · 2.13 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
{
"name": "jspm-hmr",
"version": "1.0.0-rc7",
"description": "Dev-Server with Hot-Reload for JSPM & SystemJS",
"author": "Piotr Witek <[email protected]> (http://piotrwitek.github.io)",
"repository": "https://github.com/piotrwitek/jspm-hmr",
"homepage": "https://github.com/piotrwitek/jspm-hmr",
"license": "MIT",
"types": "es5/jspm-hmr-server.d.ts",
"main": "es5/jspm-hmr-server.js",
"module": "es6/jspm-hmr-server.js",
"jsnext:main": "es6/jspm-hmr-server.js",
"bin": {
"jspm-hmr": "./es5/cli.js"
},
"engines": {
"node": ">=4"
},
"scripts": {
"precommit": "yarn run lint",
"prepush": "yarn run check & yarn test",
"prepublishOnly": "yarn run reinstall && yarn run check && yarn run test && yarn run build",
"clean": "rm -rf node_modules/ es5/ es6/",
"reinstall": "yarn run clean && yarn install",
"build": "yarn run build:es5 & yarn run build:es6",
"build:es5": "rm -rf es5 && tsc -p src --outDir es5",
"build:es6": "rm -rf es6 && tsc -p src --outDir es6 -t 'ES2015'",
"check": "yarn run lint & yarn run tsc",
"lint": "tslint --project src/tsconfig.json",
"tsc": "tsc -p src --noEmit",
"test": "jest --forceExit --config jest.json test/",
"dev": "ts-node -P src src/cli.ts"
},
"dependencies": {
"chokidar-socket-emitter": "^0.6.0",
"commander": "^2.9.0",
"compression": "^1.6.2",
"connect-history-api-fallback": "^1.3.0",
"express": "^4.15.2",
"http-proxy": "^1.16.2",
"opener": "^1.4.3",
"shelljs": "^0.7.7",
"tslib": "^1.6.0"
},
"devDependencies": {
"@types/compression": "^0.0.33",
"@types/express": "^4.0.35",
"@types/jest": "^19.2.2",
"@types/node": "^7.0.8",
"@types/shelljs": "^0.7.0",
"@types/supertest": "^2.0.0",
"husky": "^0.13.2",
"jest": "^19.0.2",
"shx": "^0.2.2",
"supertest": "^3.0.0",
"ts-jest": "^19.0.1",
"ts-node": "^2.1.0",
"tslint": "^4.5.1",
"typescript": "^2.2.1"
},
"peerDependencies": {
"jspm": ">=0.17.0-beta.20"
},
"keywords": [
"systemjs",
"jspm",
"jspm-server",
"http-server",
"hot-reload",
"systemjs-hot-reloader"
]
}