-
Notifications
You must be signed in to change notification settings - Fork 54
/
package.json
47 lines (47 loc) · 1.05 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
{
"name": "react-checkbox-group",
"version": "5.0.2",
"description": "Sensible checkbox groups manipulation for DOM.",
"main": "lib/index.js",
"scripts": {
"build": "tsc",
"test": "jest",
"prepublish": "yarn build"
},
"repository": {
"type": "git",
"url": "https://github.com/ziad-saab/react-checkbox-group.git"
},
"keywords": [
"facebook",
"react",
"checkbox",
"group",
"dom",
"input",
"react-component"
],
"author": "Ziad Saab <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/ziad-saab/react-checkbox-group/issues"
},
"homepage": "https://github.com/ziad-saab/react-checkbox-group",
"devDependencies": {
"@testing-library/react": "^9.0.1",
"@types/jest": "^24.0.15",
"@types/react": "^16.8.23",
"jest": "^24.8.0",
"react": "^16.8.0",
"react-dom": "^16.8.0",
"ts-jest": "^24.0.2",
"typescript": "^3.5.3"
},
"peerDependencies": {
"react": "^16.8.0",
"react-dom": "^16.8.0"
},
"jest": {
"preset": "ts-jest"
}
}