-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
82 lines (82 loc) · 2.02 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
{
"name": "sequelize-stream",
"version": "1.0.2",
"description": "Create a stream of Sequelize create, update, and destroy events.",
"main": "dist/index.js",
"scripts": {
"test": "ava --tap=${CI-false} | $(if [ -z ${CI:-} ]; then echo 'tail'; else tap-xunit > $CIRCLE_TEST_REPORTS/ava/ava.xml; fi;)",
"tdd": "ava --watch",
"watch": "SCRIPTY_SILENT=true scripty",
"build": "SCRIPTY_SILENT=true scripty",
"doctoc": "SCRIPTY_SILENT=true scripty",
"dmn": "SCRIPTY_SILENT=true scripty",
"release": "SCRIPTY_SILENT=true scripty",
"lint": "eslint src $@",
"prepublish": "npm run -s build"
},
"keywords": [
"sequelize",
"postgres",
"sqlite",
"mysql",
"events",
"real-time",
"CRUD"
],
"repository": {
"type": "git",
"url": "git+https://github.com/joeybaker/sequelize-stream.git"
},
"author": "Joey Baker <joey@byjoeybaker.com> (https://byjoeybaker.com)",
"license": "Artistic-2.0",
"publishConfig": {
"access": "public"
},
"dependencies": {},
"peerDependencies": {
"sequelize": ">=4.2.0"
},
"devDependencies": {
"ava": "^0.24.0",
"babel-cli": "^6.18.0",
"babel-eslint": "^8.0.0",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-transform-object-rest-spread": "^6.19.0",
"babel-preset-latest": "^6.16.0",
"babel-register": "^6.18.0",
"babel-watch": "^2.0.3",
"dmn": "^1.0.10",
"doctoc": "^1.2.0",
"eslint": "^5.0.0",
"eslint-plugin-ava": "^4.0.0",
"eslint-plugin-filenames": "^1.1.0",
"eslint-plugin-lean-imports": "^0.3.3",
"scripty": "^1.6.0",
"sequelize": "^5.1.0",
"sqlite3": "^4.0.0",
"tap-xunit": "^2.0.0"
},
"babel": {
"presets": [
"latest"
],
"plugins": [
"add-module-exports",
"transform-object-rest-spread"
],
"sourceMaps": "inline"
},
"ava": {
"source": [
"!dist/**",
"**/*.js"
],
"files": [
"**/*.test.js"
],
"require": [
"babel-register"
],
"babel": "inherit"
}
}