-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 973 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
30
31
32
33
34
35
36
37
{
"name": "lnsr",
"version": "1.0.0",
"description": "lean server - small node.js bits & modules to create a lean and simple sever from scratch",
"main": "index.js",
"module": "index.mjs",
"scripts": {
"lint": "eslint --ext js,mjs .",
"build": "rollup --config",
"test": "c8 --clean --all --exclude=.eslintrc.js --exclude=rollup.config.js --exclude=index.js --exclude=test tap -Rspec --no-cov test"
},
"keywords": [
"lean",
"server",
"queue",
"connect",
"express",
"middleware",
"simple"
],
"author": "Matthias Dittgen <dittgen@gmail.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git@github.com:matths/lnsr.git"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^19.0.1",
"@rollup/plugin-node-resolve": "^13.0.2",
"c8": "^7.7.3",
"eslint": "^7.31.0",
"node-mocks-http": "^1.10.1",
"rollup": "^2.53.2",
"sinon": "^11.1.1",
"tap": "^15.0.9"
}
}