forked from simonexmachina/factory-girl
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
88 lines (88 loc) · 2.19 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
{
"name": "factory-girl",
"description": "A factory library for Node.js and JavaScript inspired by factory_girl",
"main": "./dist/index.js",
"author": [
"@aexmachina",
"@chetanism"
],
"babel": {
"presets": [
"es2015",
"stage-0"
],
"plugins": [
"transform-runtime",
"transform-class-properties"
]
},
"version": "5.0.3",
"keywords": [
"factory",
"test",
"bdd",
"tdd",
"fixture"
],
"repository": {
"type": "git",
"url": "http://github.com/aexmachina/factory-girl.git"
},
"license": "MIT",
"bugs": {
"url": "http://github.com/aexmachina/factory-girl/issues"
},
"licenses": [
{
"type": "MIT",
"url": "http://github.com/aexmachina/factory-girl/raw/master/LICENSE"
}
],
"dependencies": {
"babel-runtime": "^6.11.6",
"chance": "^1.0.4"
},
"devDependencies": {
"babel-cli": "^6.8.0",
"babel-core": "^6.8.0",
"babel-eslint": "^6.0.4",
"babel-plugin-transform-runtime": "^6.8.0",
"babel-preset-es2015": "^6.6.0",
"babel-preset-es2015-rollup": "^1.1.1",
"babel-preset-stage-0": "^6.5.0",
"babel-register": "^6.9.0",
"babelify": "^7.3.0",
"bluebird": "^2.9.25",
"bookshelf": "^0.10.0",
"browserify": "^13.1.0",
"chai": "^3.5.0",
"chai-as-promised": "^5.3.0",
"del": "^2.2.0",
"eslint": "^2.11.1",
"eslint-config-airbnb": "^9.0.1",
"eslint-plugin-import": "^1.8.1",
"eslint-plugin-jsx-a11y": "^1.3.0",
"eslint-plugin-mocha": "^3.0.0",
"eslint-plugin-react": "^5.1.1",
"istanbul": "^1.0.0-alpha.2",
"knex": "^0.11.7",
"mocha": "^2.5.3",
"mocha-eslint": "^2.1.1",
"mongoose": "^4.5.4",
"redux-orm": "^0.9.0-rc.3",
"rollup": "^0.27.0",
"rollup-plugin-babel": "^2.5.0",
"sequelize": "^3.24.0",
"should": "^6.0.3",
"sinon": "^7.1.1",
"sinon-chai": "^3.2.0",
"sqlite3": "^3.1.4"
},
"scripts": {
"lint": "eslint src test tools",
"test": "NODE_ENV=test mocha",
"test:cover": "NODE_ENV=test babel-node ./node_modules/istanbul/lib/cli.js cover ./node_modules/mocha/bin/_mocha",
"build": "node tools/build",
"prepublish": "npm run test && npm run build"
}
}