-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.4 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.4 KB
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
{
"name": "@orchejs/validators",
"version": "0.1.0",
"description": "Orche - Global and local validators",
"main": "index.js",
"typings": "index.d.ts",
"engines": {
"node": ">=6.9.0"
},
"scripts": {
"clean": "rm -rf ./build ./coverage .nyc_output",
"lint": "node_modules/.bin/tslint ./lib/**/*.ts ./test/**/*.ts",
"test": "node_modules/.bin/mocha",
"tsc": "node_modules/.bin/tsc --project tsconfig.json",
"post-compile": "cp package.json README.md ./build/validators",
"build": "npm run clean && npm run test && npm run tsc && npm run post-compile",
"coverage": "npm run clean && node_modules/.bin/nyc --reporter=lcov node_modules/.bin/mocha"
},
"repository": {
"type": "git",
"url": "git+https://github.com/orchejs/validators.git"
},
"keywords": [
"Validators",
"Global Validators",
"Local Validators",
"Customized Validators"
],
"author": "Mauricio Gemelli Vigolo",
"license": "MIT",
"bugs": {
"url": "https://github.com/orchejs/validators/issues"
},
"homepage": "https://github.com/orchejs/validators#readme",
"devDependencies": {
"@types/chai": "^4.0.4",
"@types/mocha": "^2.2.43",
"@types/node": "^8.0.31",
"chai": "^4.1.2",
"coveralls": "^2.13.1",
"mocha": "^3.5.3",
"nyc": "^11.2.1",
"ts-node": "^3.3.0",
"tslint": "^5.7.0",
"tslint-config-airbnb": "^5.3.0",
"typescript": "^2.5.2"
}
}