forked from moodysalem/react-fastclick
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
59 lines (59 loc) · 1.6 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
{
"name": "react-fastclick-alt",
"version": "1.1.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"
],
"scripts": {
"pretest": "npm run build",
"test": "karma start my.conf.js --single-run",
"prepublish": "npm test",
"build": "webpack"
},
"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.3.0"
},
"devDependencies": {
"babel-core": "^6.13.2",
"babel-loader": "^6.2.4",
"babel-plugin-transform-class-properties": "^6.11.5",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-require-ignore": "0.0.2",
"babel-plugin-transform-strict-mode": "^6.11.3",
"babel-preset-es2015": "^6.13.2",
"babel-preset-react": "^6.11.1",
"babel-preset-stage-1": "^6.13.0",
"jquery": "^2.1.4",
"karma": "^0.13.19",
"karma-chrome-launcher": "^0.2.2",
"karma-mocha": "^0.2.1",
"karma-webpack": "^1.7.0",
"mocha": "^2.3.4",
"object-assign": "^4.0.1",
"react": "^15.3.0",
"react-addons-test-utils": "^15.3.0",
"react-dom": "^15.3.0",
"webpack": "^1.12.9"
}
}