UNPKG

1.39 kBJSONView Raw
1{
2 "name": "@stencil/dev-server",
3 "version": "0.0.18",
4 "description": "Tiny LiveReload server that watches a single directory",
5 "main": "dist/index.js",
6 "bin": {
7 "stencil-dev-server": "./bin/stencil-dev-server"
8 },
9 "scripts": {
10 "build": "tsc -p .",
11 "test": "jest --runInBand",
12 "deploy": "npm run build && np"
13 },
14 "files": [
15 "assets/",
16 "bin/",
17 "dist/",
18 "LICENSE",
19 "README.md"
20 ],
21 "repository": {
22 "type": "git",
23 "url": "git+https://github.com/ionic-team/stencil-dev-server.git"
24 },
25 "author": "Ionic Team",
26 "license": "MIT",
27 "bugs": {
28 "url": "https://github.com/ionic-team/stencil-dev-server/issues"
29 },
30 "homepage": "https://github.com/ionic-team/stencil-dev-server#readme",
31 "dependencies": {
32 "@ionic/discover": "^0.3.3",
33 "chokidar": "^1.7.0",
34 "ecstatic": "^2.2.1",
35 "opn": "^5.1.0",
36 "tiny-lr": "^1.0.5"
37 },
38 "devDependencies": {
39 "@types/chokidar": "^1.7.0",
40 "@types/jest": "^21.1.2",
41 "@types/opn": "^3.0.28",
42 "@types/supertest": "^2.0.3",
43 "jest": "^21.2.1",
44 "np": "^2.16.0",
45 "supertest": "^3.0.0",
46 "typescript": "^2.4.1"
47 },
48 "jest": {
49 "moduleFileExtensions": [
50 "ts",
51 "tsx",
52 "js"
53 ],
54 "transform": {
55 "^.+\\.(ts|tsx)$": "<rootDir>/preprocessor.js"
56 },
57 "testMatch": [
58 "**/__tests__/*.(ts|tsx|js)"
59 ]
60 }
61}