UNPKG

2.49 kBJSONView Raw
1{
2 "name": "polyserve",
3 "version": "0.27.15",
4 "description": "A simple dev server for bower components",
5 "homepage": "https://github.com/Polymer/tools/tree/master/packages/polyserve",
6 "repository": "github:Polymer/tools",
7 "bugs": "https://github.com/Polymer/tools/issues",
8 "license": "BSD-3-Clause",
9 "author": "The Polymer Project Authors",
10 "main": "./lib/polyserve.js",
11 "bin": {
12 "polyserve": "bin/polyserve"
13 },
14 "scripts": {
15 "build": "npm run clean && tsc && npm run lint",
16 "clean": "rimraf lib",
17 "format": "find src test -name \"*.ts\" | xargs clang-format --style=file -i",
18 "lint": "tslint -p .",
19 "start": "./bin/polyserve",
20 "test": "npm run build && mocha \"lib/test/**/*_test.js\" && tslint \"src/**/*.ts\"",
21 "test:unit": "mocha \"lib/test/**/*_test.js\"",
22 "test:watch": "tsc-then -- mocha \"lib/test/**/*_test.js\"",
23 "update-goldens": "tsc && UPDATE_POLYSERVE_GOLDENS=true mocha lib/test/compile-middleware_test.js || echo ''"
24 },
25 "keywords": [
26 "polymer",
27 "polyserve"
28 ],
29 "dependencies": {
30 "@types/compression": "^0.0.33",
31 "@types/content-type": "^1.1.0",
32 "@types/escape-html": "0.0.20",
33 "@types/express": "^4.0.36",
34 "@types/mime": "^2.0.0",
35 "@types/mz": "0.0.29",
36 "@types/opn": "^3.0.28",
37 "@types/parse5": "^2.2.34",
38 "@types/pem": "^1.8.1",
39 "@types/resolve": "0.0.6",
40 "@types/serve-static": "^1.7.31",
41 "@types/spdy": "^3.4.1",
42 "bower-config": "^1.4.1",
43 "browser-capabilities": "^1.0.0",
44 "command-line-args": "^5.0.2",
45 "command-line-usage": "^5.0.5",
46 "compression": "^1.6.2",
47 "content-type": "^1.0.2",
48 "cors": "^2.8.4",
49 "escape-html": "^1.0.3",
50 "express": "^4.8.5",
51 "find-port": "^1.0.1",
52 "http-proxy-middleware": "^0.17.2",
53 "lru-cache": "^4.0.2",
54 "mime": "^2.3.1",
55 "mz": "^2.4.0",
56 "opn": "^3.0.2",
57 "pem": "^1.8.3",
58 "polymer-build": "^3.1.0",
59 "polymer-project-config": "^4.0.0",
60 "requirejs": "^2.3.4",
61 "resolve": "^1.5.0",
62 "send": "^0.16.2",
63 "spdy": "^3.3.3"
64 },
65 "devDependencies": {
66 "@types/cors": "^2.8.4",
67 "@types/lru-cache": "^2.5.32",
68 "@types/sinon": "^5.0.0",
69 "@types/supertest": "^2.0.1",
70 "@types/tmp": "0.0.31",
71 "intercept-stdout": "^0.1.2",
72 "rimraf": "^2.6.2",
73 "sinon": "^5.0.7",
74 "source-map-support": "^0.4.6",
75 "supertest": "^3.0.0",
76 "tmp": "0.0.28",
77 "tsc-then": "^1.1.0"
78 },
79 "typings": "./lib/polyserve.d.ts"
80}