-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.92 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 1.92 KB
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
63
64
65
66
67
68
69
70
71
{
"name": "react-click-out",
"version": "1.1.0",
"description": "A react component to handle click out events",
"keywords": [
"react",
"reactjs",
"clickout",
"click-out",
"click",
"out"
],
"author": "andre-araujo <andreluis9214@gmail.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/andre-araujo/react-clickout"
},
"main": "dist/index.js",
"scripts": {
"build": "microbundle build",
"dev": "microbundle watch",
"commit": "git-cz",
"lint:fix": "eslint ./src --fix",
"lint": "eslint ./src",
"test": "jest --no-cache",
"test:coverage": "jest --coverage"
},
"devDependencies": {
"@types/react": "^16.4.4",
"babel-cli": "^6.26.0",
"babel-eslint": "^8.0.1",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-preset-env": "^1.6.0",
"babel-preset-react": "^6.24.1",
"commitizen": "^2.9.6",
"cz-conventional-changelog": "^2.0.0",
"eslint": "^4.3.0",
"eslint-config-airbnb": "^15.1.0",
"eslint-plugin-babel": "^4.1.2",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jsx-a11y": "^5.1.1",
"eslint-plugin-react": "^7.1.0",
"jest": "^21.1.0",
"microbundle": "^0.4.4",
"react": "^16.4.1",
"typescript": "^2.9.2"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"jest": {
"verbose": true,
"transformIgnorePatterns": [
"/node_modules/"
],
"coverageThreshold": {
"global": {
"branches": 70,
"functions": 70,
"lines": 70,
"statements": 70
}
}
},
"peerDependencies": {
"react": "*"
}
}