This repository has been archived by the owner on Jul 15, 2022. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
58 lines (58 loc) · 1.9 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
{
"name": "@small-tech/nodekit",
"version": "1.0.0",
"description": "A Small Web Server",
"main": "index.js",
"type": "module",
"license": "AGPL-version-3.0",
"private": false,
"engines": {
"node": ">= 18.0.0",
"npm": ">= 8.0.0"
},
"homepage": "https://github.com/small-tech/nodekit",
"repository": {
"type": "git",
"url": "https://github.com/small-tech/nodekit.git"
},
"bugs": "https://github.com/small-tech/nodekit/issues",
"funding": {
"type": "foundation",
"url": "https://small-tech.org/fund-us/"
},
"keywords": [
"nodekit",
"small web",
"small tech",
"esbuild",
"svelte"
],
"author": {
"name": "Aral Balkan",
"email": "[email protected]",
"url": "https://ar.al"
},
"contributors": [],
"scripts": {
"test": "PRODUCTION=true esm-tape-runner 'tests/(bin|utils|cli|files|loader).js' NODE_OPTIONS='--require=./suppress-experimental.cjs' --enable-source-maps --experimental-modules --experimental-specifier-resolution=node --experimental-vm-modules --experimental-loader ./src/production/processes/loader.js | tap-monkey",
"coverage": "PRODUCTION=true c8 esm-tape-runner 'tests/(bin|utils|cli|files|loader).js' NODE_OPTIONS='--require=./suppress-experimental.cjs' --enable-source-maps --experimental-modules --experimental-specifier-resolution=node --experimental-vm-modules --experimental-loader ./src/production/processes/loader.js | tap-monkey"
},
"dependencies": {
"@small-tech/https": "^3.0.3",
"@small-tech/jsdb": "^2.0.6",
"@small-tech/sirv": "^2.0.0",
"chokidar": "^3.5.2",
"esbuild": "^0.14.11",
"polka": "^1.0.0-next.22",
"sade": "^1.8.1",
"svelte": "^3.48.0",
"tinyws": "^0.1.0",
"ws": "^8.4.2"
},
"devDependencies": {
"@small-tech/esm-tape-runner": "^2.0.0",
"@small-tech/tap-monkey": "^1.4.0",
"@small-tech/tape-with-promises": "^1.0.1",
"c8": "^7.11.0"
}
}