-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.08 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": "@germinator/node",
"description": "Dynamic database seeds using declarative YAML files",
"version": "0.4.11",
"license": "MPL-2.0",
"author": {
"name": "Launchcode",
"email": "[email protected]",
"url": "https://lc.dev"
},
"repository": {
"type": "git",
"url": "https://github.com/launchcodedev/germinator.git"
},
"main": "dist/index.js",
"module": "dist/es/index.js",
"types": "dist/index.d.ts",
"files": [
"/dist",
"!*.tsbuildinfo",
"!*.test.*"
],
"scripts": {
"build": "tsc -b",
"build:es": "tsc -b tsconfig.es.json",
"clean": "rm -rf dist *.tsbuildinfo",
"lint": "eslint src",
"fix": "eslint --fix src",
"test": "jest",
"prepublishOnly": "yarn clean && yarn build && yarn build:es"
},
"dependencies": {
"@germinator/core": "0.4",
"debug": "4",
"fs-extra": "9",
"knex": "0.21"
},
"devDependencies": {
"@types/fs-extra": "9",
"@types/tmp": "0.2",
"sqlite3": "5",
"tmp-promise": "3"
},
"prettier": "@lcdev/prettier",
"jest": {
"preset": "@lcdev/jest"
}
}