-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
35 lines (35 loc) · 1014 Bytes
/
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
{
"name": "pagination-object",
"version": "1.2.2",
"description": "Generate a pagination object to be used on Node.js",
"main": "index.js",
"scripts": {
"lint": "./node_modules/.bin/jshint *.js test/*.js",
"coverage": "istanbul cover ./node_modules/mocha/bin/_mocha --report lcovonly -- -R spec && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage",
"test": "npm run lint && mocha"
},
"precommit": [
"test"
],
"repository": {
"type": "git",
"url": "git@github.com:renancouto/pagination-object.git"
},
"keywords": [
"pagination"
],
"author": "Renan Couto",
"license": "MIT",
"bugs": {
"url": "https://github.com/renancouto/pagination-object/issues"
},
"homepage": "https://github.com/renancouto/pagination-object",
"devDependencies": {
"coveralls": "^2.11.2",
"istanbul": "^0.3.10",
"jshint": "^2.6.3",
"mocha": "^2.2.1",
"mocha-lcov-reporter": "0.0.2",
"pre-commit": "^1.0.6"
}
}