-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
52 lines (52 loc) · 1.12 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
{
"name": "fortune-http",
"description": "HTTP implementation for Fortune.js.",
"version": "1.2.28",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/fortunejs/fortune-http.git"
},
"scripts": {
"demo": "node test/demo",
"lint": "eslint lib",
"postpublish": "npm run tag",
"tag": "git tag `npm v fortune-http version` && git push origin --tags",
"test": "npm run lint && node test"
},
"dependencies": {
"@node-rs/crc32": "^1.9.2",
"busboy": "^1.6.0",
"clean-css": "^5.3.2",
"cookie": "^0.5.0",
"css-select": "^5.1.0",
"dom-serializer": "^2.0.0",
"htmlparser2": "^9.1.0",
"negotiator": "^0.6.3"
},
"devDependencies": {
"chalk": "^2.4.2",
"eslint": "^8.43.0",
"eslint-config-boss": "^1.0.6",
"form-data": "^4.0.0",
"fortune": "^5.5.18",
"lorem-ipsum": "^2.0.8",
"tapdance": "^5.1.1"
},
"main": "lib/index.js",
"files": [
"lib/",
"test/",
"LICENSE"
],
"eslintConfig": {
"extends": "boss/es5"
},
"engines": {
"node": ">=6.10"
},
"keywords": [
"http",
"fortune"
]
}