-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
68 lines (68 loc) · 1.71 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "factoria",
"version": "4.0.1",
"description": "Simplistic model factory for Node/JavaScript",
"license": "MIT",
"repository": "phanan/factoria",
"author": {
"name": "Phan An",
"email": "[email protected]",
"url": "https://phanan.net"
},
"scripts": {
"lint": "eslint .",
"type-check": "tsc --noEmit",
"type-check:watch": "npm run type-check -- --watch",
"test": "jest",
"build": "rollup -c"
},
"main": "dist/factoria.js",
"types": "./types.d.ts",
"keywords": [
"model",
"factory",
"seed",
"dummy",
"schema"
],
"peerDepedencies": {
"@faker-js/faker": "^6.0.0-alpha.3"
},
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.9.6",
"@babel/preset-env": "^7.9.6",
"@babel/preset-typescript": "^7.9.0",
"@faker-js/faker": "^6.0.0-alpha.3",
"@rollup/plugin-commonjs": "^17.1.0",
"@rollup/plugin-node-resolve": "^11.1.1",
"@rollup/plugin-typescript": "^4.1.1",
"@types/jest": "^26.0.20",
"@typescript-eslint/eslint-plugin": "^2.30.0",
"@typescript-eslint/parser": "^2.30.0",
"deepmerge": "^4.2.2",
"eslint": "^6.8.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-jest": "^23.8.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"husky": "^5.0.9",
"jest": "^26.6.3",
"lint-staged": "^10.5.4",
"rollup": "^2.38.5",
"rollup-plugin-terser": "^7.0.2",
"ts-jest": "^26.5.1",
"tslib": "^1.11.1",
"typescript": "^4.1.5"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"**/*.ts": "yarn lint"
}
}