-
Notifications
You must be signed in to change notification settings - Fork 23
/
package.json
73 lines (73 loc) · 1.93 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
{
"name": "ucast",
"version": "0.0.1",
"private": true,
"description": "[email protected]:stalniy/ucast.git",
"main": "index.js",
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"**/*.{js,ts}": [
"eslint --fix --ext .js,.ts"
]
},
"scripts": {
"coverage.submit": "codecov --disable=gcov"
},
"repository": {
"type": "git",
"url": "git+https://github.com/stalniy/ucast.git"
},
"keywords": [
"where",
"sql",
"mongo",
"conditions",
"query",
"builder",
"ast"
],
"author": "Sergii Stotskyi <[email protected]>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/stalniy/ucast/issues"
},
"homepage": "https://github.com/stalniy/ucast#readme",
"devDependencies": {
"@babel/core": "^7.10.2",
"@babel/plugin-proposal-class-properties": "^7.10.4",
"@babel/plugin-proposal-object-rest-spread": "^7.10.1",
"@babel/plugin-transform-typescript": "^7.10.1",
"@babel/preset-env": "^7.10.2",
"@rollup/plugin-babel": "^5.0.3",
"@rollup/plugin-commonjs": "^14.0.0",
"@rollup/plugin-node-resolve": "^8.0.1",
"@semantic-release/changelog": "^5.0.1",
"@semantic-release/git": "^9.0.0",
"@semantic-release/github": "^7.0.7",
"@semantic-release/npm": "^7.0.5",
"@types/chai": "^4.2.11",
"@types/chai-spies": "^1.0.1",
"@types/mocha": "^7.0.2",
"@typescript-eslint/eslint-plugin": "^3.6.0",
"chai": "^4.2.0",
"chai-spies": "^1.0.0",
"codecov": "^3.7.0",
"eslint": "^7.4.0",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-config-airbnb-typescript": "^8.0.2",
"eslint-plugin-import": "^2.22.0",
"husky": "^4.2.5",
"lint-staged": "^10.2.11",
"mocha": "^8.0.1",
"nyc": "^15.1.0",
"rollup": "^2.15.0",
"rollup-plugin-terser": "^6.1.0",
"semantic-release": "^17.4.7",
"ts-node": "^8.10.2",
"typescript": "^3.9.5"
}
}