-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
52 lines (52 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
{
"name": "single-click-highlightable",
"version": "1.0.0",
"description": "allows users to highlight text on elements without triggering the element's onClick handler",
"main": "dist/index.js",
"scripts": {
"test": "jest",
"build": "babel src/index.js -o dist/index.js",
"watch": "babel -w src/index.js -o dist/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/venmo/single-click-highlightable.git"
},
"keywords": [
"click",
"highlight",
"react",
"hoc"
],
"author": "Venmo",
"license": "MIT",
"bugs": {
"url": "https://github.com/venmo/single-click-highlightable/issues"
},
"homepage": "https://github.com/venmo/single-click-highlightable#readme",
"peerDependencies": {
"react": "0.14.x || 15.x.x",
"react-dom": "0.14.x || 15.x.x",
"prop-types": "0.14.x || 15.x.x"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"enzyme": "^2.9.1",
"jest": "^20.0.4",
"jsdom": "^11.1.0",
"react-test-renderer": "^15.6.1",
"sinon": "^2.3.8"
},
"jest": {
"setupFiles": [
"<rootDir>/src/test/setupFile.js"
]
},
"dependencies": {
"prop-types": "^15.5.10",
"react": "^15.6.1",
"react-dom": "^15.6.1"
}
}