This repository has been archived by the owner on Feb 9, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 29
/
package.json
57 lines (57 loc) · 1.61 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
{
"name": "prpl-server",
"version": "1.4.2",
"description": "A Node implementation of the PRPL pattern for serving Progressive Web Apps",
"repository": "git+https://github.com/Polymer/prpl-server-node.git",
"main": "lib/prpl.js",
"types": "lib/prpl.d.ts",
"bin": "bin/prpl-server",
"engines": {
"node": ">=10.0"
},
"author": "The Polymer Project Authors",
"license": "BSD-3-Clause",
"scripts": {
"build": "rm -Rf lib/ && tsc",
"build:watch": "tsc --watch",
"format": "find src -name '*.ts' | xargs clang-format --style=file -i",
"prepack": "npm run build",
"prepublishOnly": "npm test",
"test": "npm run build && mocha lib/test/**/*_test.js",
"test:watch": "tsc-then -- npm run test"
},
"files": [
"bin/**/*",
"lib/**/*"
],
"dependencies": {
"ansi-escape-sequences": "^5.1.2",
"browser-capabilities": "^1.1.4",
"command-line-args": "^5.1.1",
"command-line-usage": "^6.1.0",
"compression": "^1.7.4",
"express": "^4.17.1",
"http-errors": "^1.8.0",
"rendertron-middleware": "^0.1.5",
"send": "^0.17.1",
"statuses": "^2.0.0",
"valid-url": "^1.0.9"
},
"devDependencies": {
"@types/chai": "^4.2.12",
"@types/compression": "^1.7.0",
"@types/express": "^4.17.7",
"@types/http-errors": "^1.8.0",
"@types/mocha": "^8.0.2",
"@types/node": "^14.0.27",
"@types/send": "^0.14.5",
"@types/statuses": "^2.0.0",
"@types/valid-url": "^1.0.3",
"chai": "^4.2.0",
"clang-format": "^1.4.0",
"mocha": "^8.1.1",
"source-map-support": "^0.5.19",
"tsc-then": "^1.1.0",
"typescript": "^3.9.7"
}
}