-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
74 lines (74 loc) · 1.99 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
{
"name": "query-face",
"nameVar": "queryFace",
"version": "0.0.0-development",
"description": "Secure SQL query building library to get rid of static endpoints. Works best with Node.js query-face-node package.",
"main": "lib/query-face.js",
"module": "lib/query-face.module.js",
"types": "lib/index.d.ts",
"scripts": {
"build": "rollup -c",
"test": "jest --verbose",
"docs": "node .jsdoc/node/before-generation.js && jsdoc -c ./.jsdoc/config.js -t ./.jsdoc/custom-template && node .jsdoc/node/after-generation.js",
"semantic-release": "semantic-release"
},
"husky": {
"hooks": {
"pre-commit": "npm run docs && git add ./docs ./.jsdoc && lint-staged",
"pre-push": "npm test"
}
},
"lint-staged": {
"{.jsdoc,.}/src/**/*.js": [
"prettier --write",
"eslint --fix"
],
"./docs/query-face/**/*.html": [
"prettier --write"
]
},
"keywords": [
"query-builder",
"orm-like",
"sql",
"javascript",
"client"
],
"author": "engin üstün",
"license": "MIT",
"jest": {
"transform": {
"^.+\\.js$": "<rootDir>/jest.transform.js"
}
},
"devDependencies": {
"@babel/core": "^7.5.5",
"@babel/plugin-proposal-object-rest-spread": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"@types/jest": "^24.0.15",
"eslint": "^5.16.0",
"eslint-config-prettier": "^4.3.0",
"eslint-plugin-prettier": "^3.1.0",
"husky": "^2.7.0",
"jest": "^24.8.0",
"jsdoc": "^3.6.3",
"lint-staged": "^10.0.9",
"prettier": "^1.17.0",
"rollup": "^1.17.0",
"rollup-plugin-babel": "^4.3.3",
"rollup-plugin-prettier": "^0.6.0",
"rollup-plugin-terser": "^4.0.4",
"semantic-release": "^17.0.4"
},
"homepage": "https://github.com/enginustun/query-face#readme",
"bugs": {
"url": "https://github.com/enginustun/query-face/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/enginustun/query-face.git"
},
"publishConfig": {
"access": "public"
}
}