-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
42 lines (42 loc) · 1.08 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
{
"name": "react-click-n-hold",
"version": "1.0.6",
"description": "Long press event for react. Click and hold wrapper component.",
"main": "dist/main.js",
"author": "sonsoleslp <[email protected]>",
"license": "MIT",
"homepage": "http://sonsoleslp.github.io/react-click-n-hold/",
"keywords": [
"react-component",
"react",
"long-press",
"click",
"hold",
"event"
],
"dependencies": {
"react": "^0.14.7",
"react-dom": "^0.14.7"
},
"repository": {
"type": "git",
"url": "https://github.com/sonsoleslp/react-click-n-hold.git"
},
"scripts": {
"dev": "webpack && webpack-dev-server --inline --content-base ./example/",
"start": "npm run dev",
"build": "babel src/ClickNHold.jsx > dist/main.js",
"prod": "webpack"
},
"devDependencies": {
"babel": "^6.5.2",
"babel-cli": "^6.5.1",
"babel-core": "^6.5.2",
"babel-loader": "^6.2.3",
"babel-preset-es2015": "^6.5.0",
"babel-preset-react": "^6.5.0",
"eslint-loader": "^1.9.0",
"webpack": "^1.12.13",
"webpack-dev-server": "^1.14.1"
}
}