-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 935 Bytes
/
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
{
"name": "smodg",
"version": "1.3.0",
"description": "Generate basic Sequelize models from TypeScript declaration files",
"main": "index.js",
"bin": {
"smodg": "./index.js"
},
"exports": {
"./package.json": "./package.json"
},
"scripts": {
"test": "jest",
"test:watch": "jest --watch",
"dev": "node ./dist/index.js",
"build": "rimraf ./dist && npx tsc && copyfiles package.json README.md LICENSE dist/"
},
"repository": {
"type": "git",
"url": "https://github.com/nealwp/smodg.git"
},
"keywords": [
"sequelize",
"typescript"
],
"author": "nealwp",
"license": "ISC",
"devDependencies": {
"@types/jest": "^29.4.1",
"@types/minimist": "^1.2.2",
"copyfiles": "^2.4.1",
"jest": "^29.5.0",
"rimraf": "^4.4.0",
"ts-jest": "^29.0.5",
"ts-node": "^10.9.1"
},
"dependencies": {
"minimist": "^1.2.8",
"typescript": "^4.9.5"
}
}