-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 853 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 853 Bytes
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
{
"name": "validate-args-js",
"version": "1.1.0",
"description": "Validate arguments.",
"main": "index.js",
"scripts": {
"test": "./node_modules/istanbul/lib/cli.js cover ./node_modules/mocha/bin/_mocha -- -R spec ./test/**/*.spec.js"
},
"author": "Kelvin Oenning <kelvin@adapcon.com.br> (https://adapcon.com.br/)",
"homepage": "https://adapcon.com.br/",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/Adapcon/validate-args-js"
},
"nyc": {
"reporter": [
"text",
"html",
"lcovonly"
],
"exclude": [
"test/**"
]
},
"devDependencies": {
"chai": "^4.1.2",
"coveralls": "^3.0.0",
"istanbul": "^0.4.5",
"mocha": "^5.1.0",
"mocha-lcov-reporter": "^1.3.0",
"nyc": "^11.6.0",
"sinon": "^4.5.0"
},
"dependencies": {}
}