This repository has been archived by the owner on Sep 8, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
71 lines (71 loc) · 1.83 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
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "@dawnlabs/tacklebox",
"version": "0.0.11",
"description": "React UX components for handling common interactions",
"main": "dist/index.js",
"umd:main": "dist/index.umd.js",
"module": "dist/index.mjs",
"scripts": {
"test": "jest",
"coverage": "yarn test --coverage",
"build": "microbundle --jsx React.createElement",
"dev": "microbundle --jsx React.createElement watch",
"docz:dev": "docz dev",
"docz:build": "docz build",
"lint": "eslint src",
"prettier": "prettier --single-quote --no-semi --print-width 100 --write src/*.js test/*.js",
"prepublishOnly": "yarn build"
},
"files": [
"dist/"
],
"keywords": [
"react",
"ux",
"hooks",
"interactions",
"collection"
],
"author": "dawnlabs",
"license": "MIT",
"dependencies": {
"copy-to-clipboard": "^3.2.0",
"react-click-outside": "^3.0.1",
"react-fast-compare": "2.0.4"
},
"peerDependencies": {
"react": "^16.8.0"
},
"devDependencies": {
"@babel/core": "^7.4.5",
"@babel/plugin-transform-runtime": "^7.4.4",
"@babel/preset-env": "^7.4.5",
"@babel/preset-react": "^7.0.0",
"@testing-library/react": "^8.0.4",
"babel-eslint": "^10.0.2",
"babel-jest": "^24.8.0",
"docz": "^1.2.0",
"docz-theme-default": "^1.2.0",
"eslint": "^6.0.1",
"eslint-plugin-import": "^2.18.0",
"eslint-plugin-react": "^7.14.2",
"eslint-plugin-react-hooks": "^1.6.1",
"jest": "^24.8.0",
"microbundle": "^0.11.0",
"react": "^16.8.6",
"react-dom": "^16.8.6"
},
"jest": {
"clearMocks": true,
"setupFilesAfterEnv": [
"@testing-library/react/cleanup-after-each"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/dawnlabs/tacklebox.git"
},
"bugs": {
"url": "https://github.com/dawnlabs/tacklebox/issues"
}
}