-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
66 lines (66 loc) · 1.83 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
{
"name": "@quintype/backend",
"version": "2.7.0",
"description": "client for accessing quintype API",
"main": "index.js",
"scripts": {
"docs": "rimraf docs && jsdoc -c jsdoc.json",
"prepublishOnly": "./bin-dev-scripts/standard-version-release.sh",
"sync-files-to": "npx onchange --verbose --wait --await-write-finish '**/*.js' -- ./bin-dev-scripts/sync-to.sh ",
"test": "jest",
"test:cover": "jest --env=jsdom --coverage --watchAll; open coverage/index.html"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/quintype/quintype-backend-js.git"
},
"keywords": [
"quintype"
],
"author": "Quintype Developers <[email protected]>",
"license": "ISC",
"bugs": {
"url": "https://github.com/quintype/quintype-backend-js/issues"
},
"homepage": "https://github.com/quintype/quintype-backend-js#readme",
"dependencies": {
"axios": "^0.21.1",
"bluebird": "^3.7.2",
"cache-manager": "^5.4.0",
"lodash": "^4.17.15",
"object-hash": "^2.0.1",
"request-promise": "^4.2.6"
},
"devDependencies": {
"babel-eslint": "^10.0.3",
"better-docs": "^1.2.2",
"eslint": "^7.28.0",
"eslint-config-prettier": "^4.2.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.17.2",
"eslint-plugin-jest": "^23.20.0",
"eslint-plugin-node": "^8.0.1",
"eslint-plugin-prettier": "^3.0.1",
"eslint-plugin-promise": "^4.1.1",
"eslint-plugin-standard": "^4.0.1",
"gh-pages": "^2.1.1",
"husky": "^4.3.8",
"jest": "^24.7.1",
"jsdoc": "^3.6.3",
"lint-staged": "^8.1.5",
"onchange": "^4.1.0",
"prettier": "^1.17.0",
"standard-version": "^9.5.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,jsx}": [
"npx eslint --fix",
"git add"
]
}
}