-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathpackage.json
59 lines (59 loc) · 1.57 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
{
"name": "sequelize-version",
"version": "0.0.58",
"description": "Automatically version (audit, log) your sequelize models",
"main": "index.js",
"keywords": [
"sequelize",
"version",
"audit",
"log",
"history"
],
"scripts": {
"pretest": "yarn build",
"test": "mocha",
"test:dev": "nodemon --exec 'yarn test' --ignore node_modules --ignore index.js ",
"build": "babel src -o index.js",
"preversion": "yarn test",
"version": "git add --all",
"release": "yarn version --new-version patch",
"postversion": "git push",
"precommit": "lint-staged"
},
"lint-staged": {
"*.{css,md,js,json}": [
"prettier-eslint --write",
"git add"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/ivmarcos/sequelize-version.git"
},
"author": "Marcos Andrei Ivanechtchuk",
"license": "MIT",
"bugs": {
"url": "https://github.com/ivmarcos/sequelize-version/issues"
},
"homepage": "https://github.com/ivmarcos/sequelize-version#readme",
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-remove-console": "^6.8.4",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"continuation-local-storage": "^3.2.0",
"dotenv": "^5.0.1",
"eslint": "^4.3.0",
"husky": "^0.14.3",
"lint-staged": "^7.1.3",
"mocha": "^5.2.0",
"pg": "^7.4.3",
"prettier-eslint-cli": "^4.7.1",
"sequelize": "*"
},
"peerDependencies": {
"sequelize": ">= 3.x <= 5.x"
}
}