-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
45 lines (45 loc) · 1.17 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
{
"name": "factory-girl-objection-adapter",
"description": "Objection adapter for factory girl.",
"keywords": [
"factory-girl",
"factory-girl-adapter",
"objection"
],
"version": "1.0.0",
"scripts": {
"build": "babel -d lib src",
"ci": "yarn build && yarn lint && yarn test --ci",
"db:migrate": "knex migrate:latest",
"dev": "yarn build --watch",
"lint": "eslint .",
"test": "jest"
},
"jest": {
"testEnvironment": "node"
},
"main": "lib/index.js",
"author": "Greg Bergé <[email protected]>",
"license": "MIT",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-eslint": "^8.2.2",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-preset-env": "^1.6.1",
"eslint": "^4.19.1",
"eslint-config-airbnb": "^16.1.0",
"eslint-config-prettier": "^2.9.0",
"eslint-config-smooth": "^1.1.1",
"eslint-plugin-import": "^2.10.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.7.0",
"factory-girl": "^5.0.2",
"jest": "^22.4.3",
"knex": "^0.14.4",
"objection": "^1.0.1",
"pg": "^7.4.1"
},
"peerDependencies": {
"factory-girl": ">=5.0.2"
}
}