-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 1.68 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
{
"name": "@ssense/node-paginator",
"version": "1.1.2",
"description": "Paginator",
"main": "./dist/index.js",
"typings": "./dist/index",
"scripts": {
"lint": "tslint --format verbose './ts/**/*.ts' './tests/**/*.ts' ",
"compile": "rm -rf dist/* && tsc",
"test": "NODE_ENV=test npm run test:unit",
"test:unit": "NODE_ENV=test mocha tests/unit --recursive --compilers ts:ts-node/register --bail",
"cover": "./node_modules/.bin/nyc --report-dir tests/coverage/ npm run test",
"coveralls": "cat tests/coverage/lcov.info | ./node_modules/.bin/coveralls"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/SSENSE/node-paginator.git"
},
"keywords": [
"pagination"
],
"author": "Mathieu Doyon <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/SSENSE/node-paginator/issues"
},
"homepage": "https://github.com/SSENSE/node-paginator#readme",
"devDependencies": {
"@ssense/tslint-config": "^2.1.1",
"@types/chai": "^3.4.34",
"@types/mocha": "^2.2.33",
"@types/node": "0.0.2",
"chai": "^3.5.0",
"coveralls": "^2.11.15",
"mocha": "^3.2.0",
"nyc": "^10.0.0",
"pre-commit": "^1.1.3",
"ts-node": "^1.7.0",
"tslint": "^3.14.0",
"typescript": "^2.1.4"
},
"pre-commit": [
"lint",
"test",
"compile"
],
"nyc": {
"include": [
"ts/*.ts"
],
"exclude": [
"node_modules",
"ts/index.ts"
],
"extension": [
".ts"
],
"require": [
"ts-node/register"
],
"reporter": [
"json",
"html",
"text-summary",
"lcov"
]
},
"dependencies": {
"querystring": "^0.2.0"
}
}