This repository was archived by the owner on Oct 20, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
97 lines (97 loc) · 2.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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "awesome-validator",
"version": "0.0.0-semantically-released",
"description": "Awesome validator for node or browser.",
"keywords": [
"awesome-validator",
"awesome-validation",
"awesome-validate",
"validator",
"validation",
"validate"
],
"homepage": "https://github.com/cknow/awesome-validator",
"bugs": {
"url": "https://github.com/cknow/awesome-validator/issues",
"email": "ricardo@clicknow.com.br"
},
"license": "MIT",
"author": {
"name": "Ricardo Gobbo de Souza",
"email": "ricardogobbosouza@yahoo.com.br",
"role": "Developer"
},
"files": [
"docs",
"lib",
"awesome-validator.min.js"
],
"main": "./lib/validator.js",
"types": "./lib/validator.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/cknow/awesome-validator"
},
"scripts": {
"check-coverage": "nyc check-coverage --global 100",
"commit": "git-cz",
"commitmsg": "validate-commit-msg",
"cover": "nyc --reporter lcov --reporter text --extension .ts mocha -t 5000 -r ts-node/register test/*.ts test/**/*.ts",
"lint": "npm run lint:src && npm run lint:test",
"lint:src": "npm run tslint -- tsconfig.json src/*.ts src/**/*.ts",
"lint:test": "npm run tslint -- test/tsconfig.json test/*.ts test/**/*.ts",
"posttest": "npm run check-coverage",
"precommit": "npm run lint",
"precover": "rimraf .nyc_output coverage lib",
"prepare": "rimraf lib && tsc && webpack",
"prepush": "npm t",
"pretest": "npm run lint",
"report-coverage": "cat ./coverage/lcov.info | coveralls",
"test": "npm run cover",
"tslint": "tslint --config tslint.json --project",
"watch": "nodemon --ext ts --exec npm t"
},
"config": {
"commitizen": {
"path": "node_modules/cz-conventional-changelog"
}
},
"dependencies": {
"@types/deep-equal": "^1.0.1",
"@types/mime-types": "^2.1.0",
"chardet": "^0.4.2",
"date-fns": "^2.0.0-alpha.7",
"deep-equal": "^1.0.1",
"mime-types": "^2.1.18",
"tslib": "^1.9.0"
},
"devDependencies": {
"@cknow/tslint-config": "^3.3.0",
"@types/chai": "^4.1.2",
"@types/mocha": "^2.2.48",
"@types/mock-fs": "^3.6.30",
"awesome-typescript-loader": "^3.5.0",
"chai": "^4.1.2",
"commitizen": "^2.9.6",
"coveralls": "^3.0.0",
"cz-conventional-changelog": "^2.1.0",
"husky": "^0.14.3",
"mocha": "^5.0.1",
"mock-fs": "^4.4.2",
"nodemon": "^1.15.1",
"nyc": "^11.4.1",
"rimraf": "^2.6.2",
"temp-write": "^3.4.0",
"ts-node": "^5.0.0",
"tslint": "^5.9.1",
"typescript": "^2.7.2",
"validate-commit-msg": "^2.14.0",
"webpack": "^4.0.1",
"webpack-cli": "^2.0.9"
},
"engines": {
"node": ">=8",
"npm": ">=3"
},
"private": false
}