-
Notifications
You must be signed in to change notification settings - Fork 31
/
package.json
68 lines (68 loc) · 2.16 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
62
63
64
65
66
67
68
{
"name": "react-touch-screen-keyboard",
"version": "1.0.0",
"description": "React touch screen keyboard",
"main": "./lib/index.js",
"scripts": {
"clean": "rimraf lib",
"start": "cross-env NODE_ENV=development node_modules/webpack-dev-server/bin/webpack-dev-server.js --config ./examples/webpack.config.js",
"lint": "eslint src || exit 0",
"build": "cross-env babel src --out-dir lib",
"copy": "cp src/Keyboard.scss lib/",
"scss": "node-sass src/Keyboard.scss -o lib --output-style compressed --source-map true",
"prepublish": "npm run clean && npm run build && npm run scss && npm run copy"
},
"repository": {
"type": "git",
"url": "https://github.com/xTrinch/react-touch-screen-keyboard"
},
"keywords": [
"react",
"react-component",
"component",
"touchscreen",
"keyboard"
],
"author": "xTrinch <[email protected]> (https://github.com/xTrinch)",
"license": "MIT",
"bugs": {
"url": "https://github.com/xTrinch/react-touch-screen-keyboard/issues"
},
"homepage": "https://github.com/xTrinch/react-touch-screen-keyboard",
"devDependencies": {
"babel": "^6.5.2",
"babel-cli": "^6.14.0",
"babel-eslint": "^7.0.0",
"babel-loader": "^7.1.1",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-preset-es2015": "^6.14.0",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"babel-preset-stage-2": "^6.13.0",
"cross-env": "^3.0.0",
"css-loader": "^0.28.4",
"eslint": "^3.6.0",
"eslint-config-airbnb": "^13.0.0",
"eslint-plugin-import": "^2.0.0",
"eslint-plugin-jsx-a11y": "^2.2.2",
"eslint-plugin-react": "^6.3.0",
"extract-text-webpack-plugin": "^3.0.0",
"node-sass": "^4.7.2",
"prop-types": "^15.5.10",
"react": "^16.3.2",
"react-dom": "^16.3.2",
"rimraf": "^2.5.4",
"sass-loader": "^6.0.6",
"style-loader": "^0.18.2",
"webpack": "^3.4.1",
"webpack-dev-server": "^2.9.3"
},
"peerDependencies": {
"react": "~0.14.8 || ^15.0.0 || ^16.0.0",
"react-dom": "~0.14.8 || ^15.0.0 || ^16.0.0"
},
"dependencies": {
"custom-event-polyfill": "^0.3.0",
"react-draggable": "^3.0.3"
}
}