-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
44 lines (44 loc) · 1.04 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
{
"name": "@srfnstack/spliffy",
"version": "1.2.4",
"author": "snowbldr",
"private": false,
"homepage": "https://github.com/SRFNStack/spliffy",
"license": "MIT",
"type": "module",
"files": [
"src/*",
"LICENSE.txt",
"README.md"
],
"main": "src/index.mjs",
"repository": {
"type": "git",
"url": "git@github.com:SRFNStack/spliffy.git"
},
"scripts": {
"test": "npm run lint:fix && jest",
"lint": "standard --env jest src ./*js && standard --env jest --env browser --global Prism docs example",
"lint:fix": "standard --env jest --fix src ./*js && standard --env jest --env browser --global Prism --fix docs example"
},
"keywords": [
"node",
"http",
"server",
"web",
"framework",
"rest"
],
"dependencies": {
"cookie": "^0.4.1",
"etag": "^1.8.1",
"uuid": "^8.3.2",
"uWebSockets.js": "github:uNetworking/uWebSockets.js#v20.40.0"
},
"devDependencies": {
"helmet": "^4.6.0",
"jest": "^27.3.1",
"node-fetch": "^2.6.7",
"standard": "^16.0.4"
}
}