-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.2 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.2 KB
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
{
"name": "sequelize-expression",
"version": "0.2.3",
"description": "Simple query expression frontend for the sequelize library",
"keywords": [
"sequelize",
"expression",
"query",
"filters",
"where",
"database",
"steplix",
"params"
],
"main": "dist/expression.js",
"types": "dist/expression.d.ts",
"scripts": {
"start": "ts-node ./src/expression",
"build": "tsc",
"test": "jest",
"test:ft": "jest --onlyFailures",
"test:pattern": "jest -t",
"test:watch": "jest --watchAll",
"test:package": "node ./build/prepublish.js",
"prePublishing": "npm run build && npm run test && npm run test:package"
},
"devDependencies": {
"@types/jest": "^28.1.1",
"@types/sequelize": "^4.28.13",
"jest": "^28.1.1",
"jest-cli": "^28.1.1",
"sequelize": "^6.20.1",
"sqlite3": "^5.0.8",
"steplix-query-filters": "^0.0.13",
"ts-jest": "^28.0.4",
"ts-node": "^10.8.1",
"typescript": "^4.7.3"
},
"author": {
"name": "SntTGR"
},
"license": "MIT",
"repository": "github:SntTGR/sequelize-expression",
"bugs": {
"url": "https://github.com/SntTGR/sequelize-expression/issues"
},
"workspaces": [
"build/tmp"
]
}