-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
79 lines (79 loc) · 2.44 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
{
"bugs": {
"email": "[email protected]"
},
"contributors": [
{
"email": "[email protected]",
"name": "Jonathan M. Wilbur",
"url": "https://github.com/JonathanWilbur"
}
],
"description": "",
"devDependencies": {
"@babel/core": "^7.12.9",
"@babel/preset-env": "^7.12.7",
"@babel/preset-typescript": "^7.12.7",
"@types/benchmark": "^2.1.0",
"@types/i18next-fs-backend": "^1.0.0",
"@types/node": "^14.14.10",
"@typescript-eslint/eslint-plugin": "^4.9.0",
"@typescript-eslint/parser": "^4.9.0",
"babel-jest": "^26.6.3",
"benchmark": "^2.1.4",
"eslint": "^7.15.0",
"jest": "^26.6.3",
"jest-junit": "^12.0.0",
"madge": "^3.12.0",
"npm-check-updates": "^10.2.3",
"sloc": "^0.2.1",
"ts-loader": "^8.0.11",
"typedoc": "^0.19.2",
"typescript": "^4.1.2",
"webpack": "^5.10.0",
"webpack-cli": "^4.2.0"
},
"directories": {
"doc": "documentation",
"test": "test"
},
"files": [
"dist/node/**/*",
"locales/**/*",
"schema/**/*"
],
"keywords": [
"sql",
"ddl",
"schema",
"database",
"dbms",
"modeling"
],
"license": "MIT",
"main": "./dist/node/index.js",
"name": "preql-core",
"scripts": {
"benchmark": "node ./test/benchmark.js",
"breaking-update": "npx ncu -u && npm install",
"build": "npx tsc --incremental && npx webpack",
"build-node": "npx tsc --incremental",
"build-web": "npx webpack",
"check-circular-deps": "npx madge --circular './source/index.ts'",
"clean": "rm -rf dist; mkdir -p dist",
"generate-docs": "npx typedoc --out ./documentation/jsdoc ./source",
"line-count": "npx sloc source",
"lint": "npx eslint --config .eslintrc.yml './source/**/*.ts' || true",
"test": "npx jest --ci --reporters=default --reporters=jest-junit --coverage"
},
"types": "./dist/node/index.d.ts",
"version": "0.1.0",
"dependencies": {
"ajv": "^6.12.6",
"i18next": "^19.8.4",
"i18next-fs-backend": "^1.0.7",
"is-debugging": "^1.0.0",
"json-schema-to-typescript": "^10.0.0",
"os-locale": "^5.0.0"
}
}