-
Notifications
You must be signed in to change notification settings - Fork 28
/
package.json
53 lines (53 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
53
{
"name": "fortune-json-api",
"description": "JSON API serializer for Fortune.",
"version": "2.3.1",
"license": "MIT",
"repository": {
"type": "git",
"url": "[email protected]:fortunejs/fortune-json-api.git"
},
"bugs": "https://github.com/fortunejs/fortune-json-api/issues",
"scripts": {
"postpublish": "npm run tag",
"tag": "git tag `npm v fortune-json-api version` && git push origin --tags",
"test": "npm run lint && node test",
"lint": "eslint lib test"
},
"dependencies": {
"deep-equal": "^2.0.1",
"inflection": "^1.13.4",
"uri-templates": "^0.2.0"
},
"devDependencies": {
"ajv": "^8",
"ajv-formats": "^2.1.1",
"chalk": "^3.0.0",
"eslint": "^6.8.0",
"eslint-config-boss": "^1.0.6",
"fortune": "^5.5.18",
"fortune-http": "^1.2.26",
"tapdance": "^5.1.1"
},
"files": [
"lib/",
"LICENSE"
],
"main": "lib/index.js",
"eslintConfig": {
"extends": "boss",
"rules": {
"strict": 0,
"indent": 0
}
},
"keywords": [
"json",
"api",
"fortune",
"http",
"hypermedia",
"rest",
"serializer"
]
}