forked from w3tecch/typeorm-seeding
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
48 lines (48 loc) · 1.2 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
{
"name": "typeorm-seeding",
"version": "1.0.0-beta.6",
"description": "TypeORM seeding",
"main": "dist/typeorm-seeding.js",
"module": "dist/typeorm-seeding.es.js",
"files": [
"dist"
],
"types": "dist/typeorm-seeding.d.ts",
"scripts": {
"build": "npm run clean && rollup -c",
"watch": "rollup -cw",
"clean": "rimraf dist"
},
"license": "MIT",
"author": "w3tec.ch <info@w3tec.ch>",
"contributors": [
{
"name": "Gery Hirschfeld",
"email": "gery.hirschfeld@w3tec.ch",
"url": "https://github.com/hirsch88"
}
],
"devDependencies": {
"@types/faker": "^4.1.4",
"rimraf": "^2.6.2",
"rollup": "^0.66.2",
"rollup-plugin-cli": "^0.1.5",
"rollup-plugin-commonjs": "^9.1.8",
"rollup-plugin-node-builtins": "^2.1.2",
"rollup-plugin-node-globals": "^1.4.0",
"rollup-plugin-node-resolve": "^3.4.0",
"rollup-plugin-typescript2": "^0.17.0",
"tslint": "^5.11.0",
"typescript": "^3.0.3"
},
"dependencies": {
"@types/node": "^10.11.0",
"chalk": "^2.4.1",
"commander": "^2.18.0",
"faker": "^4.1.0",
"glob": "^7.1.3",
"reflect-metadata": "^0.1.12",
"typeorm": "^0.2.7"
},
"peerDependencies": {}
}