-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
61 lines (61 loc) · 1.65 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
{
"name": "react-virtual-keyboard",
"version": "1.0.2",
"description": "Use jQuery Virtual Keyboard in react.js",
"main": "dist/Keyboard.js",
"scripts": {
"start": "node server.js",
"lint": "eslint src",
"build": "npm run build-babel",
"build-babel": "babel ./lib/Keyboard.js --out-file dist/Keyboard.js",
"prepublish": "npm run build"
},
"repository": {
"type": "git",
"url": "https://github.com/Utzel-Butzel/react-virtual-keyboard.git"
},
"keywords": [
"react",
"reactjs",
"keyboard",
"onscreen",
"virtual",
"component"
],
"author": "Robert Gühne <robert@polyxo.de> (http://github.com/Utzel-Butzel)",
"license": "MIT",
"bugs": {
"url": "https://github.com/Utzel-Butzel/react-virtual-keyboard/issues"
},
"homepage": "https://github.com/Utzel-Butzel/react-virtual-keyboard",
"devDependencies": {
"babel-compile": "^2.0.0",
"babel-core": "^6.0.20",
"babel-eslint": "^4.1.3",
"babel-loader": "^6.0.1",
"babel-preset-es2015": "^6.0.15",
"babel-preset-react": "^6.0.15",
"babel-preset-stage-0": "^6.0.15",
"css-loader": "^0.23.1",
"eslint": "^1.10.3",
"eslint-plugin-react": "^3.6.2",
"extract-text-webpack-plugin": "^1.0.1",
"node-sass": "^3.7.0",
"react": "^15.0.1",
"react-dom": "^15.0.1",
"react-hot-loader": "^1.3.0",
"sass-loader": "^3.2.0",
"style-loader": "^0.13.1",
"webpack": "^1.12.2",
"webpack-dev-server": "^1.12.1"
},
"peerDependenies": {
"react": "^16.2.0",
"react-dom": "^16.2.0"
},
"dependencies": {
"jquery": ">=1.4.3",
"prop-types": "^15.6.0",
"virtual-keyboard": "^1.25.28"
}
}