forked from Polymer/polyserve
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
105 lines (105 loc) · 3.54 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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
{
"name": "polyserve",
"version": "0.23.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": "mkdir -p lib && rm -r lib",
"build": "npm run clean && tsc",
"test": "npm run build && mocha && tslint \"src/**/*.ts\"",
"test:watch": "watchy -w src/ -- npm test",
"prepublish": "npm run build",
"format": "find src test -iname '*.ts' | xargs clang-format --style=file -i"
},
"keywords": [
"polymer",
"polyserve"
],
"dependencies": {
"@types/assert": "0.0.29",
"@types/babel-core": "^6.7.14",
"@types/babylon": "^6.16.2",
"@types/compression": "^0.0.33",
"@types/content-type": "^1.1.0",
"@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/serve-static": "^1.7.31",
"@types/spdy": "^3.4.1",
"@types/ua-parser-js": "^0.7.30",
"babel-core": "^6.18.2",
"babel-plugin-transform-es2015-arrow-functions": "^6.8.0",
"babel-plugin-transform-es2015-block-scoped-functions": "^6.8.0",
"babel-plugin-transform-es2015-block-scoping": "^6.18.0",
"babel-plugin-transform-es2015-classes": "^6.18.0",
"babel-plugin-transform-es2015-computed-properties": "^6.8.0",
"babel-plugin-transform-es2015-destructuring": "^6.19.0",
"babel-plugin-transform-es2015-duplicate-keys": "^6.8.0",
"babel-plugin-transform-es2015-for-of": "^6.18.0",
"babel-plugin-transform-es2015-function-name": "^6.9.0",
"babel-plugin-transform-es2015-literals": "^6.8.0",
"babel-plugin-transform-es2015-modules-amd": "^6.24.1",
"babel-plugin-transform-es2015-object-super": "^6.8.0",
"babel-plugin-transform-es2015-parameters": "^6.18.0",
"babel-plugin-transform-es2015-shorthand-properties": "^6.18.0",
"babel-plugin-transform-es2015-spread": "^6.8.0",
"babel-plugin-transform-es2015-sticky-regex": "^6.8.0",
"babel-plugin-transform-es2015-template-literals": "^6.8.0",
"babel-plugin-transform-es2015-typeof-symbol": "^6.18.0",
"babel-plugin-transform-es2015-unicode-regex": "^6.11.0",
"babel-plugin-transform-regenerator": "^6.16.1",
"babylon": "^6.17.4",
"browser-capabilities": "^0.2.0",
"command-line-args": "^3.0.1",
"command-line-usage": "^3.0.3",
"compression": "^1.6.2",
"content-type": "^1.0.2",
"dom5": "^2.0.1",
"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",
"parse5": "^2.2.3",
"pem": "^1.8.3",
"polymer-build": "^2.1.0",
"requirejs": "^2.3.4",
"resolve": "^1.0.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",
"sinon": "^1.17.5",
"source-map-support": "^0.4.6",
"supertest": "^2.0.1",
"tmp": "0.0.28",
"tslint": "^4.0.2",
"typescript": "^2.1.4",
"watchy": "^0.6.6"
},
"typings": "./lib/polyserve.d.ts"
}