-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
71 lines (71 loc) · 1.7 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/restify-request-validator",
"version": "1.1.12",
"description": "Restify requests validator",
"main": "js/index.js",
"scripts": {
"compile": "rm -rf js/* && ./node_modules/.bin/tsc",
"lint": "./node_modules/.bin/tslint ./ts/{,**/}*.ts ./tests/{,**/}*.ts --format verbose",
"test": "./node_modules/.bin/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"
},
"keywords": [
"restify",
"request",
"validator",
"input"
],
"author": "Rémy Jeancolas <[email protected]>",
"license": "MIT",
"devDependencies": {
"@ssense/tslint-config": "^1.0.1",
"@types/chai": "^3.4.34",
"@types/mocha": "^2.2.33",
"chai": "^3.5.0",
"coveralls": "^2.11.14",
"mocha": "^3.0.2",
"nyc": "^8.1.0",
"pre-commit": "^1.1.3",
"ts-node": "^1.2.2",
"tslint": "^3.14.0",
"typescript": "^2.0.10"
},
"repository": {
"type": "git",
"url": "[email protected]:SSENSE/restify-request-validator.git"
},
"bugs": {
"url": "https://github.com/SSENSE/restify-request-validator/issues"
},
"homepage": "https://github.com/SSENSE/restify-request-validator#readme",
"engines": {
"node": ">= 6.2.0",
"npm": ">= 3"
},
"pre-commit": [
"lint",
"test"
],
"nyc": {
"include": [
"ts/*.ts"
],
"exclude": [
"node_modules",
"ts/index.ts"
],
"extension": [
".ts"
],
"require": [
"ts-node/register"
],
"reporter": [
"json",
"html",
"text-summary",
"lcov"
]
}
}