-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.08 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.08 KB
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
{
"name": "sequelize-fixture",
"version": "0.1.4",
"description": "util for building sequelize model fixtures, mostly useful for setting up test data.",
"keywords": [
"factory",
"test",
"fixture",
"fixtures",
"rosie",
"factory_girl"
],
"author": "Dejian Xu<xudejian2008@gmail.com>",
"contributors": [],
"dependencies": {
"casual": "~1.4.6"
},
"devDependencies": {
"blanket": "~1.1.6",
"travis-cov": "~0.2.5",
"mocha": "~1.18.2",
"sequelize": "~1.7.3",
"sqlite3": "~2.2.3"
},
"repository": {
"type": "git",
"url": "git://github.com/xudejian/sequelize-fixture.git"
},
"config": {
"travis-cov": { "threshold": 70 },
"blanket": {
"pattern": "//^((?!/node_modules/)(?!/test/).)*$/ig"
}
},
"scripts": {
"test": "NODE_ENV=test ./node_modules/.bin/mocha --reporter spec && NODE_ENV=test ./node_modules/.bin/mocha --require blanket --reporter travis-cov",
"test-cov-report": "NODE_ENV=test ./node_modules/.bin/mocha --require blanket --reporter html-cov > coverage.html && open coverage.html"
}
}