This repository has been archived by the owner on Sep 14, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 48
/
Copy pathpackage.json
85 lines (85 loc) · 2.34 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
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "polyserve",
"version": "0.27.0",
"description": "A simple dev server for bower components",
"license": "BSD-3-Clause",
"repository": "PolymerLabs/polyserve",
"main": "./lib/polyserve.js",
"bin": {
"polyserve": "bin/polyserve"
},
"scripts": {
"start": "./bin/polyserve",
"clean": "rimraf lib",
"build": "npm run clean && tsc",
"test": "npm run build && mocha && tslint \"src/**/*.ts\"",
"test:watch": "tsc-then -- mocha -c",
"prepublish": "npm run build",
"format": "find src test -iname '*.ts' | xargs clang-format --style=file -i"
},
"keywords": [
"polymer",
"polyserve"
],
"dependencies": {
"@types/babylon": "^6.16.2",
"@types/compression": "^0.0.33",
"@types/content-type": "^1.1.0",
"@types/escape-html": "0.0.20",
"@types/express": "^4.0.36",
"@types/mime": "0.0.29",
"@types/mz": "0.0.29",
"@types/node": "^8.0.0",
"@types/opn": "^3.0.28",
"@types/parse5": "^2.2.34",
"@types/pem": "^1.8.1",
"@types/resolve": "0.0.6",
"@types/serve-static": "^1.7.31",
"@types/spdy": "^3.4.1",
"@types/ua-parser-js": "^0.7.30",
"babylon": "^6.17.4",
"bower-config": "^1.4.1",
"browser-capabilities": "^0.2.2",
"command-line-args": "^3.0.1",
"command-line-usage": "^3.0.3",
"compression": "^1.6.2",
"content-type": "^1.0.2",
"escape-html": "^1.0.3",
"express": "^4.8.5",
"find-port": "^1.0.1",
"http-proxy-middleware": "^0.17.2",
"lru-cache": "^4.0.2",
"mime": "^1.3.4",
"mz": "^2.4.0",
"opn": "^3.0.2",
"pem": "^1.8.3",
"polymer-build": "=3.0.0-pre.7",
"requirejs": "^2.3.4",
"resolve": "^1.5.0",
"send": "^0.14.1",
"spdy": "^3.3.3"
},
"devDependencies": {
"@types/chai": "^3.4.34",
"@types/chai-as-promised": "0.0.29",
"@types/lru-cache": "^2.5.32",
"@types/mocha": "^2.2.33",
"@types/sinon": "^1.16.31",
"@types/supertest": "^2.0.1",
"@types/tmp": "0.0.31",
"chai": "^3.5.0",
"chai-as-promised": "^6.0.0",
"clang-format": "1.0.52",
"intercept-stdout": "^0.1.2",
"mocha": "^3.1.0",
"rimraf": "^2.6.2",
"sinon": "^1.17.5",
"source-map-support": "^0.4.6",
"supertest": "^2.0.1",
"tmp": "0.0.28",
"tsc-then": "^1.1.0",
"tslint": "^4.0.2",
"typescript": "^2.8.1"
},
"typings": "./lib/polyserve.d.ts"
}