forked from moxystudio/js-class-is
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.35 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
{
"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 <[email protected]>",
"homepage": "https://github.com/moxystudio/js-class-is",
"repository": {
"type": "git",
"url": "[email protected]: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"
},
"standard-version": {
"scripts": {
"posttag": "git push --follow-tags origin master && npm publish"
}
},
"lint-staged": {
"*.js": [
"eslint --fix",
"git add"
]
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"devDependencies": {
"@commitlint/cli": "^6.1.3",
"@commitlint/config-conventional": "^6.1.3",
"eslint": "^4.19.1",
"eslint-config-moxy": "^5.2.1",
"husky": "^0.14.3",
"jest": "^22.4.3",
"lint-staged": "^7.0.0",
"standard-version": "^4.3.0"
},
"dependencies": {}
}