This repository was archived by the owner on Sep 22, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.48 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.48 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
{
"name": "react-fastclick-alt",
"version": "2.0.1",
"description": "A react component that triggers click and focus events for taps of children components",
"main": "dist/react-fastclick-alt.js",
"files": [
"dist/react-fastclick-alt.js",
"index.jsx"
],
"engines": {
"npm": ">5.0.0"
},
"scripts": {
"pretest": "npm run build",
"test": "karma start my.conf.js --single-run",
"prepublish": "npm test",
"build": "webpack -p"
},
"repository": {
"type": "git",
"url": "git+https://github.com/moodysalem/react-fastclick.git"
},
"keywords": [
"react",
"fastclick",
"tap",
"tappable",
"touch",
"events",
"click"
],
"author": "Moody Salem",
"license": "MIT",
"bugs": {
"url": "https://github.com/moodysalem/react-fastclick/issues"
},
"homepage": "https://github.com/moodysalem/react-fastclick#readme",
"peerDepenncies": {
"react": ">=15.0.0"
},
"devDependencies": {
"babel-core": "^6.13.2",
"babel-loader": "^7.1.2",
"babel-plugin-transform-class-properties": "^6.11.5",
"babel-plugin-transform-strict-mode": "^6.11.3",
"babel-preset-env": "^1.6.0",
"babel-preset-react": "^6.11.1",
"karma": "^0.13.19",
"karma-chrome-launcher": "^0.2.2",
"karma-mocha": "^0.2.1",
"karma-webpack": "^2.0.4",
"mocha": "^2.3.4",
"object-assign": "^4.0.1",
"react": "^15.3.0",
"react-addons-test-utils": "^15.3.0",
"react-dom": "^15.6.2",
"webpack": "^3.6.0"
}
}