-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
69 lines (69 loc) · 1.74 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
{
"name": "@enkidevs/mongoose-cursor-pagination",
"version": "1.0.1",
"description": "Mongoose cursor-based pagination.",
"main": "lib/index.js",
"files": [
"lib"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"prepare": "babel src --out-dir lib",
"test": "npm run prepare && mocha 'lib/**/__tests__/*' --exit",
"format": "prettier --write 'src/**/*.js'",
"lint:ci": "CI=true eslint . --ignore-path .gitignore --quiet",
"lint": "eslint . --ignore-path .gitignore",
"check-branch": "enkidevs-assert-restricted-branch"
},
"repository": {
"type": "git",
"url": "https://github.com/enkidevs/mongoose-cursor-pagination.git"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"linters": {
"*.{js,jsx}": [
"npm run check-branch",
"npm run format",
"npm run lint",
"git add"
]
}
},
"keywords": [
"mongoose",
"paginate",
"pagination",
"cursor",
"mongodb",
"javascript"
],
"author": "Pedro da Rocha Pinto <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/enkidevs/mongoose-cursor-pagination/issues"
},
"homepage": "https://github.com/enkidevs/mongoose-cursor-pagination",
"devDependencies": {
"@enkidevs/assert-restricted-branch": "^1.0.2",
"@enkidevs/eslint-config-backend": "^0.2.3",
"babel-cli": "^6.26.0",
"babel-eslint": "^10.0.1",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"eslint": "^5.8.0",
"eslint-config-babel": "^8.0.1",
"husky": "^1.1.3",
"lint-staged": "^10.0.7",
"mocha": "^6.1.4",
"mongoose": "^5.6.4",
"prettier": "^1.14.3",
"should": "^13.1.2"
}
}