-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.32 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
{
"name": "lightpress",
"version": "1.1.0",
"description": "Your composable HTTP server.",
"main": "lib/index.js",
"module": "lib/index.mjs",
"typings": "lib/index.d.ts",
"engines": {
"node": ">=12.0.0"
},
"scripts": {
"build": "rimraf $npm_package_directories_lib && rollup -c",
"develop": "rollup -c -w",
"format": "prettier --ignore-path .gitignore --write .",
"prepublishOnly": "npm run test && npm run build && npm run types",
"test": "jest",
"types": "tsc --emitDeclarationOnly"
},
"files": [
"lib/**/*"
],
"directories": {
"lib": "lib"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lunsdorf/lightpress.git"
},
"keywords": [
"composable",
"express",
"http",
"lightpress",
"server"
],
"license": "MIT",
"author": "Sören Lünsdorf <[email protected]>",
"homepage": "https://github.com/lunsdorf/lightpress#readme",
"bugs": {
"url": "https://github.com/lunsdorf/lightpress/issues"
},
"devDependencies": {
"@rollup/plugin-sucrase": "4.0.4",
"@sucrase/jest-plugin": "2.2.1",
"@types/jest": "28.1.8",
"@types/node": "18.7.13",
"jest": "29.0.1",
"prettier": "2.7.1",
"rimraf": "3.0.2",
"rollup": "2.78.1",
"rollup-plugin-import-resolver": "1.2.1",
"typescript": "4.8.2"
}
}