-
Notifications
You must be signed in to change notification settings - Fork 73
/
package.json
55 lines (55 loc) · 1.32 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
{
"name": "sequelize-mock",
"version": "0.10.2",
"description": "A simple mock interface specifically for testing code relying on Sequelize models",
"main": "src/index.js",
"scripts": {
"doc-gen": "node scripts/doc-gen.js",
"test": "nyc --reporter=text --reporter=html mocha",
"test-report": "nyc report --reporter=html",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"preversion": "npm test",
"version": "node scripts/version.js && git add changelog.md"
},
"repository": {
"type": "git",
"url": "git+https://github.com/BlinkUX/sequelize-mock.git"
},
"keywords": [
"sequelize",
"mocking",
"test",
"testing"
],
"author": "Blink UX",
"license": "MIT",
"bugs": {
"url": "https://github.com/BlinkUX/sequelize-mock/issues"
},
"homepage": "https://github.com/BlinkUX/sequelize-mock#readme",
"dependencies": {
"bluebird": "^3.4.6",
"inflection": "^1.10.0",
"lodash": "^4.16.4"
},
"devDependencies": {
"coveralls": "^2.11.14",
"dox": "^0.9.0",
"glob": "^7.1.1",
"istanbul": "^0.4.5",
"mocha": "^3.1.2",
"moment": "^2.17.1",
"nyc": "^8.3.1",
"proxyquire": "^1.7.10",
"should": "^11.1.1"
},
"nyc": {
"exclude": [
"src/index.js"
],
"include": [
"src/**/*.js"
],
"all": true
}
}