-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 1.71 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
{
"name": "query-face-node",
"version": "0.0.0-development",
"description": "This is the best query-face parser and executor library for Node.js that enables you to manipulate your data freely without creating endpoints.",
"main": "index.js",
"directories": {
"lib": "lib"
},
"scripts": {
"docs": "node .jsdoc/node/before-generation.js && jsdoc -c ./.jsdoc/config.js -t ./.jsdoc/custom-template && node .jsdoc/node/after-generation.js",
"test": "echo \"no test specified\" && exit 0",
"semantic-release": "semantic-release"
},
"husky": {
"hooks": {
"pre-commit": "npm run docs && git add ./docs ./.jsdoc && lint-staged"
}
},
"lint-staged": {
".jsdoc/src/**/*.js": [
"prettier --write",
"eslint --fix"
],
"./lib/**/*.js": [
"prettier --write",
"eslint --fix"
],
"./index.js": [
"prettier --write",
"eslint --fix"
],
"./docs/query-face-node/**/*.html": [
"prettier --write"
]
},
"repository": {
"type": "git",
"url": "https://github.com/enginustun/query-face-node.git"
},
"keywords": [],
"author": "engin ustun",
"license": "MIT",
"bugs": {
"url": "https://github.com/enginustun/query-face-node/issues"
},
"homepage": "https://github.com/enginustun/query-face-node#readme",
"dependencies": {
"async-validator": "^3.2.4",
"knex": "^0.20.13",
"winston": "^3.2.1"
},
"devDependencies": {
"eslint": "^6.1.0",
"eslint-config-prettier": "^6.0.0",
"eslint-plugin-prettier": "^3.1.0",
"husky": "^4.2.1",
"jsdoc": "^3.6.3",
"lint-staged": "^10.0.9",
"prettier": "^1.18.2",
"semantic-release": "^17.0.4"
},
"publishConfig": {
"access": "public"
}
}