-
Notifications
You must be signed in to change notification settings - Fork 32
/
package.json
84 lines (84 loc) · 2.37 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
80
81
82
83
84
{
"name": "loopback-component-jsonapi",
"description": "JSONAPI support for loopback",
"version": "0.0.0-development",
"main": "lib/index.js",
"scripts": {
"test": "npm run lint && istanbul cover _mocha --report lcovonly --reporter=spec ./test/**/*.test.js && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage",
"tester": "mocha --reporter=spec ./test/**/*.test.js",
"coverage": "istanbul cover _mocha ./test/**/*.test.js",
"lint": "standard './test/**/*.js' './lib/**/*.js' --verbose | snazzy",
"semantic-release": "semantic-release",
"travis-deploy-once": "travis-deploy-once",
"precommit": "lint-staged",
"formatter": "prettier-standard-formatter .",
"commit": "git-cz",
"commit:retry": "git-cz --retry",
"commitmsg": "commitlint -e"
},
"lint-staged": {
"*.js": [
"npm run formatter",
"git add"
]
},
"repository": {
"type": "git",
"url": "https://github.com/digitalsadhu/loopback-component-jsonapi.git"
},
"keywords": [
"loopback",
"component",
"jsonapi",
"api",
"json"
],
"author": "Richard Walker <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/digitalsadhu/loopback-component-jsonapi/issues"
},
"homepage": "https://github.com/digitalsadhu/loopback-component-jsonapi#readme",
"dependencies": {
"body-parser": "^1.18.2",
"debug": "^3.1.0",
"http-status-codes": "^1.3.0",
"inflection": "^1.7.2",
"lint-staged": "^6.0.0",
"lodash": "^4.17.1",
"prettier-standard-formatter": "^0.222222222222222.333333333333333",
"snazzy": "^7.0.0",
"type-is": "^1.6.14"
},
"devDependencies": {
"@commitlint/cli": "^6.0.2",
"@commitlint/config-conventional": "^6.0.2",
"@commitlint/prompt": "^6.0.2",
"chai": "^4.1.2",
"commitizen": "^2.9.6",
"coveralls": "^3.0.0",
"husky": "^0.14.3",
"istanbul": "^0.4.5",
"loopback": "^3.16.2",
"loopback-datasource-juggler": "^3.13.0",
"mocha": "^4.0.1",
"rsvp": "4.7.0",
"semantic-release": "^12.2.2",
"standard": "^10.0.3",
"supertest": "^3.0.0",
"travis-deploy-once": "^4.3.1"
},
"standard": {
"globals": [
"beforeEach",
"it",
"describe",
"afterEach"
]
},
"config": {
"commitizen": {
"path": "node_modules/@commitlint/prompt"
}
}
}