forked from fortunejs/fortune
-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathpackage.json
79 lines (79 loc) · 1.89 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
70
71
72
73
74
75
76
77
78
79
{
"name": "fortune",
"description": "Web framework for prototyping hypermedia APIs.",
"version": "1.28.9",
"license": "MIT",
"author": {
"name": "flyvictor",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "[email protected]:flyvictor/fortune.git"
},
"dependencies": {
"body-parser": "1.19.0",
"express": "4.17.1",
"i": "0.3.6",
"lodash": "4.17.15",
"mkdirp": "0.5.1",
"mocha": "6.2.2",
"mongoose": "5.7.8",
"qs": "6.9.0",
"rsvp": "4.8.5",
"sift": "8.5.1",
"supertest": "4.0.2",
"validate.js": "0.13.1",
"when": "3.7.8",
"zipkin": "0.19.1"
},
"devDependencies": {
"@commitlint/cli": "13.2.0",
"@commitlint/config-conventional": "13.2.0",
"commitlint-plugin-function-rules": "1.4.0",
"eslint": "7.32.0",
"eslint-config-node": "4.1.0",
"eslint-config-prettier": "8.3.0",
"eslint-plugin-mocha": "9.0.0",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-prettier": "4.0.0",
"fortune-mongodb": "git+ssh://github.com/flyvictor/fortune-mongodb.git#v1.1.5",
"husky": "4.3.8",
"istanbul": "0.4.0",
"lint-staged": "11.1.2",
"prettier": "2.4.1",
"should": "13.2.3",
"sinon": "7.5.0"
},
"scripts": {
"test": "node_modules/mocha/bin/mocha --recursive -R spec --timeout 8000",
"coverage": "istanbul cover --dir ./reports _mocha -- --recursive -R spec",
"lint:fix": "eslint *.js --fix",
"lint": "eslint *.js",
"prettify": "prettier *.js --write"
},
"engines": {
"node": ">=18.12.0"
},
"keywords": [
"json",
"api",
"framework",
"rest",
"restful"
],
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.(js)": [
"prettier --write"
],
"*.js": [
"eslint --fix --resolve-plugins-relative-to ."
]
}
}