-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.4 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
{
"name": "is-or-not",
"version": "1.0.3",
"description": "A Set of `is` and `isNot` functions in JavaScript checking and testing on objects and types",
"main": "index.js",
"repository": "[email protected]:AlaeddineMessadi/is-or-not.git",
"author": "Alaeddine Messadi <[email protected]> (https://almessadi.com)",
"license": "MIT",
"homepage": "https://alaeddinemessadi.github.io/is-or-not/index.html",
"keywords": [
"util",
"type",
"test",
"js-utils",
"utils-lib",
"is",
"type-check"
],
"scripts": {
"test": "jest",
"test:watch": "jest --watchAll",
"commit": "cz",
"eslint": "eslint '**/*.js'",
"eslint:fix": "eslint '**/*.js' --fix",
"jsdoc": "./node_modules/.bin/jsdoc -c ./jsdoc.json"
},
"bugs": {
"url": "https://github.com/AlaeddineMessadi/is-or-not/issues"
},
"devDependencies": {
"cz-conventional-changelog": "3.3.0",
"docdash": "^1.2.0",
"eslint": "^7.19.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.22.1",
"husky": "^4.3.8",
"jest": "^26.6.3",
"jsdoc": "^3.6.6"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"husky": {
"hooks": {
"pre-commit": "yarn test && yarn eslint:fix && yarn jsdoc",
"prepare-commit-msg": "exec < /dev/tty && git cz --hook || true"
}
},
"dependencies": {}
}