forked from tylerjpeterson/sequelize-history
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
54 lines (54 loc) · 1.4 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
{
"name": "sequelize-history",
"description": "Creates a revision history for instances of a given Sequelize model.",
"author": "tyler peterson <tylerjpeterson@gmail.com>",
"version": "1.4.0",
"main": "index.js",
"scripts": {
"coverage": "istanbul cover tape ./test/spec/test.js --output coverage/coverage.json && npm run report",
"report": "istanbul report --root coverage lcov && open coverage/lcov-report/index.html",
"lint": "xo ./index.js || true && xo ./test/spec/test.js || true",
"docs": "jsdoc index.js -p -c .jsdoc.json -d docs/",
"test": "node test/spec/test.js | tap-spec"
},
"dependencies": {
"lodash": "^4.17.4",
"moment-timezone": "^0.5.45"
},
"devDependencies": {
"istanbul": "^0.4.5",
"jsdoc": "^3.5.4",
"sequelize": "^4.23.4",
"sqlite3": "^4.1.0",
"tap-spec": "^5.0.0",
"tape": "^4.6.3",
"xo": "^0.18.2"
},
"bugs": {
"url": "https://github.com/tylerjpeterson/sequelize-history/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/tylerjpeterson/sequelize-history"
},
"homepage": "https://github.com/tylerjpeterson/sequelize-history",
"contributors": [
""
],
"xo": {
"globals": [
"assert",
"beforeEach",
"describe",
"expect",
"it",
"module",
"require"
]
},
"keywords": [],
"engines": {
"node": ">=8.9.1"
},
"license": "MIT"
}