forked from kidGodzilla/CloudflareCalls
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
29 lines (29 loc) · 1015 Bytes
/
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
{
"name": "cloudflare-calls",
"version": "0.1.4",
"description": "A Reference implementation for Cloudflare Calls",
"module": "public/CloudflareCalls.js",
"browser": "public/CloudflareCalls.min.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"rollup": "rollup public/CloudflareCalls.js --file public/CloudflareCalls.min.js --format umd --name \"CloudflareCalls\" --plugin @rollup/plugin-terser",
"apidocs": "apidoc -i ./ -e \"(node_modules|public)\" -o public/docs/api",
"docs": "jsdoc -c jsdoc.json",
"build": "npm run docs && mkdir -p public/docs/api && npm run apidocs && npm run rollup",
"start": "node ."
},
"author": "James Futhey",
"license": "MIT",
"dependencies": {
"@rollup/plugin-terser": "^0.4.4",
"apidoc": "^1.2.0",
"docdash": "^2.0.2",
"dotenv": "^16.4.7",
"express": "^4.21.2",
"jsdoc": "^4.0.4",
"jsonwebtoken": "^9.0.2",
"node-fetch": "^2.6.7",
"rollup": "^4.29.1",
"ws": "^8.18.0"
}
}