-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.43 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
{
"name": "sequtil",
"version": "1.0.8",
"description": "RESTful API Filter and Pagination and Sort, Sequelize Where and Limit and Offset and Order",
"main": "index.js",
"scripts": {
"test": "NODE_ENV=test npm run lint && mocha --exit",
"test:cover": "NODE_ENV=test nyc --reporter=text --reporter=lcov npm run test",
"lint": "eslint .",
"lint:fix": "eslint . --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/haijianyang/sequtil.git"
},
"keywords": [
"restful",
"api",
"filter",
"pagination",
"sort",
"sequelize",
"where",
"limit",
"offset",
"order"
],
"author": "haijianyang",
"license": "ISC",
"bugs": {
"url": "https://github.com/haijianyang/sequtil/issues"
},
"homepage": "https://github.com/haijianyang/sequtil#readme",
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"husky": {
"hooks": {
"pre-push": "npm test",
"prepare-commit-msg": "exec < /dev/tty && git cz --hook || true"
}
},
"devDependencies": {
"babel-eslint": "^10.1.0",
"cz-conventional-changelog": "^3.1.0",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.1.0",
"eslint-plugin-import": "^2.20.1",
"husky": "^4.2.3",
"mocha": "^7.1.1",
"nyc": "^15.0.0",
"power-assert": "^1.6.1",
"sinon": "^9.0.1"
},
"dependencies": {
"sequelize": "^5.21.5"
}
}