-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (70 loc) · 1.54 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": "@tacitknowledge/validator",
"version": "1.5.0",
"description": "Core for Validator ",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"prepublish": "npm run clean && npm run test && tsc",
"clean": "rimraf lib",
"test": "NODE_ENV=development nyc ./node_modules/mocha/bin/mocha -r ts-node/register src/__tests__/**/*.test.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/abalmus/validator.git"
},
"keywords": [
"validation",
"engine",
"validator",
"async",
"validation",
"processor"
],
"author": "Andrei Balmus <[email protected]> (http://abalmus.com)",
"license": "MIT",
"dependencies": {
"lodash": "^4.17.4",
"whatwg-fetch": "^2.0.3"
},
"devDependencies": {
"@types/chai": "^4.0.10",
"@types/es6-promise": "0.0.33",
"@types/mocha": "^2.2.45",
"chai": "^4.1.2",
"isomorphic-fetch": "^2.2.1",
"mocha": "^4.1.0",
"nock": "^9.1.6",
"nyc": "^11.4.1",
"rimraf": "^2.6.2",
"ts-node": "^4.1.0",
"typescript": "^2.6.2",
"typings": "^2.1.1"
},
"nyc": {
"include": [
"src/**/*.ts"
],
"extension": [
".ts",
".tsx",
".js"
],
"require": [
"ts-node/register"
],
"reporter": [
"text-summary",
"html"
],
"sourceMap": true,
"instrument": true
},
"bugs": {
"url": "https://github.com/abalmus/validator/issues"
},
"homepage": "https://github.com/abalmus/validator#readme",
"directories": {
"lib": "lib"
}
}