-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.02 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.02 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
{
"name": "sequelize-bakery",
"version": "0.0.3",
"description": "A sequelize test model builder inspired by Django's model-bakery",
"main": "dist/build.js",
"scripts": {
"test": "jest",
"build": "tsc",
"lint": "tslint -p tsconfig.json",
"run": "tsc && dist/index.js",
"prepare": "npm run build",
"prepublishOnly": "npm test",
"version": "git add -A src",
"postversion": "git push && git push --tags"
},
"_moduleAliases": {
"@app": "dist"
},
"author": "jrocketfingers <developer94@gmail.com>",
"keywords": [
"sequelize",
"test",
"builder"
],
"license": "ISC",
"dependencies": {
"@faker-js/faker": "^7.2.0",
"module-alias": "^2.2.2",
"pg": "^8.7.3",
"sequelize": "^6.14.0",
"sqlite3": "^4.2.0"
},
"devDependencies": {
"@types/faker": "^5.5.8",
"@types/jest": "^27.0.2",
"@types/node": "^16.10.2",
"@types/validator": "^13.6.3",
"jest": "^27.2.4",
"ts-jest": "^27.0.5",
"tslint": "^6.1.3",
"typescript": "^4.4.3"
}
}