-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathpackage.json
111 lines (111 loc) · 2.44 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
{
"name": "factory-bot",
"description": "A factory library for Node.js and JavaScript inspired by factory_girl",
"main": "./main.js",
"module": "./src/index",
"types": "index.d.ts",
"version": "6.3.1",
"keywords": [
"factory",
"factory-bot",
"factory-girl",
"test",
"bdd",
"tdd",
"fixture",
"mongodb"
],
"repository": "https://github.com/ratson/factory-bot.git",
"license": "MIT",
"files": [
"*.md",
"*.txt",
"*.ts",
"*.js",
"src"
],
"bugs": {
"url": "https://github.com/ratson/factory-bot/issues"
},
"licenses": [
{
"type": "MIT",
"url": "https://github.com/ratson/factory-bot/raw/master/LICENSE"
}
],
"dependencies": {
"chance": "^1.1.7",
"esm": "3.2.25"
},
"devDependencies": {
"bluebird": "^3.7.2",
"bookshelf": "^1.2.0",
"chai": "^4.3.3",
"chai-as-promised": "^7.1.1",
"cross-env": "^7.0.3",
"eslint": "^7.21.0",
"eslint-config-concise": "^0.38.0",
"eslint-config-concise-esnext": "^0.38.0",
"eslint-config-concise-import": "^0.38.0",
"eslint-config-concise-mocha": "^0.38.0",
"husky": "^4.3.0",
"istanbul": "^1.0.0-alpha.2",
"knex": "^0.95.2",
"lint-staged": "^10.5.4",
"mocha": "^8.3.2",
"mocha-eslint": "^7.0.0",
"mongodb": "^3.6.4",
"mongoose": "^5.12.0",
"prettier-eslint-cli": "^5.0.1",
"redux-orm": "^0.16.2",
"sequelize": "^6.5.0",
"should": "^13.2.3",
"sinon": "^9.2.4",
"sinon-chai": "^3.5.0",
"sqlite3": "^5.0.2"
},
"scripts": {
"lint": "eslint src test",
"test": "cross-env NODE_ENV=test mocha",
"prepublishOnly": "npm test"
},
"eslintConfig": {
"extends": [
"concise",
"concise-esnext",
"concise-import"
],
"rules": {
"arrow-parens": [
"error",
"as-needed"
],
"class-methods-use-this": "off",
"default-param-last": "off",
"function-paren-newline": "off",
"max-classes-per-file": "off",
"no-multi-assign": "off",
"no-param-reassign": "off",
"no-plusplus": "off",
"no-unused-expressions": "off",
"prefer-object-spread": "off",
"unicorn/prefer-includes": "off"
}
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"prettier-eslint --write",
"eslint --fix"
]
},
"mocha": {
"recursive": true,
"require": "esm",
"exit": true
}
}