-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
51 lines (51 loc) · 1.05 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
{
"name": "fortune-micro-api",
"description": "Micro API serializer for Fortune.",
"version": "3.1.7",
"license": "MIT",
"repository": {
"type": "git",
"url": "[email protected]:fortunejs/fortune-micro-api.git"
},
"bugs": "https://github.com/fortunejs/fortune-micro-api/issues",
"scripts": {
"postpublish": "npm run tag",
"tag": "git tag `npm v fortune-micro-api version` && git push origin --tags",
"test": "npm run lint && node test",
"lint": "eslint lib test"
},
"dependencies": {
"msgpack-lite": "^0.1.26"
},
"devDependencies": {
"chalk": "^2.4.1",
"eslint": "^5.10.0",
"eslint-config-boss": "^1.0.6",
"fortune": "^5.5.15",
"fortune-http": "^1.2.25",
"tapdance": "^5.1.1"
},
"files": [
"lib/",
"LICENSE"
],
"main": "lib/index.js",
"eslintConfig": {
"extends": "boss",
"rules": {
"strict": 0
}
},
"engines": {
"node": ">=6.10"
},
"keywords": [
"micro",
"api",
"fortune",
"http",
"hypermedia",
"rest",
"serializer"
]
}