-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 942 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 942 Bytes
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
{
"name": "small-router",
"version": "2.0.0",
"description": "Small router module that creates http server and runs callbacks that have have been added for a route via the api",
"main": "index.js",
"scripts": {
"test": "mocha tests/index.js",
"test:watch": "npx mocha --watch tests/index.js",
"coverage": "istanbul cover node_modules/mocha/bin/_mocha -- tests -R spec",
"prettify": "prettier **/*.{d.ts,js} --write"
},
"repository": {
"type": "git",
"url": "https://github.com/SC7639/node-small-router.git"
},
"keywords": [
"router",
"small-router"
],
"author": "SC7639",
"contributors": [
"wolframkriesing"
],
"license": "ISC",
"devDependencies": {
"@types/node": "^12.0.4",
"istanbul": "^0.4.5",
"mocha": "^10.2.0",
"prettier": "^2.7.1",
"should": "^8.2.2"
},
"dependencies": {
"formidable": "^1.0.17"
},
"prettier": {
"tabWidth": 4
}
}