-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
69 lines (69 loc) · 1.59 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
59
60
61
62
63
64
65
66
67
68
69
{
"name": "octoris",
"version": "0.4.4",
"description": "A functional and friendly node http framework",
"main": "lib/index.js",
"scripts": {
"test": "tape tests/*.js | tap-on",
"lint:fix": "standard --fix lib/**/*.js",
"lint": "standard lib/**/*.js",
"local:cov": "nyc --reporter=html npm test",
"test:cov": "nyc npm test",
"check-cov": "nyc check-coverage --lines 85 --functions 90 --branches 85",
"report": "nyc report --reporter=text-lcov > coverage.lcov",
"html": "node examples/simple-html/index.js",
"clean": "rimraf ./*.js",
"ac": "git add . && npx git-cz",
"commit": "npx git-cz",
"release": "npx standard-version"
},
"nyc": {
"include": [
"lib/**"
],
"exclude": [
"tests/**",
"lib/_internals",
"dist/**"
]
},
"directories": {
"lib": "lib"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dhershman1/octoris.git"
},
"keywords": [
"functional",
"http",
"framework",
"node"
],
"standard": {
"ignore": [
"dist/*"
]
},
"author": "Dustin Hershman <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/dhershman1/octoris/issues"
},
"homepage": "https://octoris.gitbook.io/octoris/",
"devDependencies": {
"nyc": "15.1.0",
"rimraf": "3.0.2",
"standard": "16.0.4",
"tap-on": "^0.3.1",
"tape": "5.5.2"
},
"dependencies": {
"encodeurl": "1.0.2",
"kyanite": "1.6.2",
"light-my-request": "4.9.0",
"pino": "7.9.2",
"safe-buffer": "5.2.1",
"uri-js": "4.4.1"
}
}