forked from ionic-team/stencil-dev-server
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.35 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
{
"name": "@stencil/dev-server",
"version": "0.0.18",
"description": "Tiny LiveReload server that watches a single directory",
"main": "dist/index.js",
"bin": {
"stencil-dev-server": "./bin/stencil-dev-server"
},
"scripts": {
"build": "tsc -p .",
"test": "jest --runInBand",
"deploy": "npm run build && np"
},
"files": [
"assets/",
"bin/",
"dist/",
"LICENSE",
"README.md"
],
"repository": {
"type": "git",
"url": "git+https://github.com/ionic-team/stencil-dev-server.git"
},
"author": "Ionic Team",
"license": "MIT",
"bugs": {
"url": "https://github.com/ionic-team/stencil-dev-server/issues"
},
"homepage": "https://github.com/ionic-team/stencil-dev-server#readme",
"dependencies": {
"@ionic/discover": "^0.3.3",
"chokidar": "^1.7.0",
"ecstatic": "^2.2.1",
"opn": "^5.1.0",
"tiny-lr": "^1.0.5"
},
"devDependencies": {
"@types/chokidar": "^1.7.0",
"@types/jest": "^21.1.2",
"@types/opn": "^3.0.28",
"@types/supertest": "^2.0.3",
"jest": "^21.2.1",
"np": "^2.16.0",
"supertest": "^3.0.0",
"typescript": "^2.4.1"
},
"jest": {
"moduleFileExtensions": [
"ts",
"tsx",
"js"
],
"transform": {
"^.+\\.(ts|tsx)$": "<rootDir>/preprocessor.js"
},
"testMatch": [
"**/__tests__/*.(ts|tsx|js)"
]
}
}