-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.49 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
{
"name": "is-0",
"version": "1.0.2",
"description": "Check if parameter is empty.",
"main": "index.js",
"scripts": {
"test": "mocha test/index.spec.js",
"eslint": "eslint ./src",
"coverage": "npm run eslint && nyc --check-coverage npm run test",
"coverage:report": "nyc --reporter=html npm run test",
"coveralls": "nyc npm test && nyc report --reporter=text-lcov | coveralls",
"jsdoc": "jsdoc -c jsdoc.json --readme README.md"
},
"nyc": {
"check-coverage": true,
"branches": 75,
"lines": 75,
"functions": 80,
"statements": 80
},
"husky": {
"hooks": {
"pre-commit": "npm run eslint && npm test && npm run jsdoc",
"pre-push": "npm run coverage"
}
},
"files": [
"src",
"index.js"
],
"repository": {
"type": "git",
"url": "git+https://github.com/SangHakLee/is.git"
},
"keywords": [
"javascript",
"underscore",
"lodash",
"isEmpty"
],
"author": "sanghaklee, <leesanghak7298@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/SangHakLee/is/issues"
},
"homepage": "https://sanghaklee.github.io/is",
"devDependencies": {
"countly-docdash": "^0.5.0",
"coveralls": "^3.0.4",
"debug": "^4.1.1",
"easy-table": "^1.1.1",
"eslint": "^5.16.0",
"husky": "^2.4.1",
"jsdoc": "^3.6.2",
"lodash": "^4.17.11",
"mocha": "^6.1.4",
"mocha-lcov-reporter": "^1.3.0",
"nyc": "^14.1.1",
"should": "^13.2.3",
"underscore": "^1.9.1"
}
}