-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 858 Bytes
/
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
{
"name": "ensure-params",
"version": "0.0.1",
"description": "Provide simple checks of method parameters on NodeJS",
"author": "Francois Karman",
"license": "MIT",
"keywords": [
"assert",
"ensure"
],
"homepage": "https://github.com/superfaz/ensure-params#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/superfaz/ensure-params.git"
},
"bugs": {
"url": "https://github.com/superfaz/ensure-params/issues"
},
"scripts": {
"pretest": "standard",
"test": "mocha",
"coverage": "nyc --reporter=text mocha",
"doc": "jsdoc -c .jsdoc.json",
"preversion": "npm test"
},
"main": "src/ensure.js",
"devDependencies": {
"chai": "^4.1.2",
"jsdoc": "^3.5.5",
"mocha": "^5.0.0",
"nyc": "^11.4.1",
"postman-jsdoc-theme": "0.0.3",
"standard": "^10.0.3"
}
}