-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
54 lines (54 loc) · 1.3 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
{
"name": "class-is",
"version": "1.1.0",
"description": "Enhances a JavaScript class by adding an is<Class> property to compare types between realms.",
"keywords": [
"withis",
"with-is",
"isclass",
"is-class",
"symbols",
"realms",
"instanceof",
"instance-of"
],
"author": "Diogo Silva <fsdiogo@gmail.com>",
"homepage": "https://github.com/moxystudio/js-class-is",
"repository": {
"type": "git",
"url": "git@github.com:moxystudio/js-class-is.git"
},
"license": "MIT",
"main": "index.js",
"scripts": {
"lint": "eslint .",
"test": "jest --env node --coverage",
"prerelease": "npm t && npm run lint",
"release": "standard-version",
"precommit": "lint-staged",
"commitmsg": "commitlint -e $GIT_PARAMS",
"postrelease": "git push --follow-tags origin HEAD && npm publish"
},
"lint-staged": {
"*.js": [
"eslint --fix",
"git add"
]
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"devDependencies": {
"@commitlint/cli": "^7.0.0",
"@commitlint/config-conventional": "^7.0.1",
"eslint": "^4.19.1",
"eslint-config-moxy": "^5.4.1",
"husky": "^0.14.3",
"jest": "^24.5.0",
"lint-staged": "^7.1.3",
"standard-version": "^4.4.0"
},
"dependencies": {}
}