-
Notifications
You must be signed in to change notification settings - Fork 28
/
package.json
57 lines (57 loc) · 1.59 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
{
"name": "react-canvas-knob",
"version": "0.5.0",
"description": "HTML5 Canvas-based React knob/dial component",
"main": "index.js",
"scripts": {
"start": "node_modules/webpack-dev-server/bin/webpack-dev-server.js --no-info",
"babel": "node_modules/babel-cli/lib/babel/index.js Knob.js -o index.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": "[email protected]:joshjg/react-canvas-knob.git",
"keywords": [
"react",
"canvas",
"knob",
"dial",
"control"
],
"author": "Joshua Goldman",
"license": "MIT",
"bugs": {
"url": "https://github.com/joshjg/react-canvas-knob"
},
"homepage": "https://github.com/joshjg/react-canvas-knob#readme",
"files": [
"index.js"
],
"devDependencies": {
"babel-cli": "^6.16.0",
"babel-core": "^6.16.0",
"babel-eslint": "^6.1.2",
"babel-loader": "^6.2.5",
"babel-plugin-react-transform": "^2.0.2",
"babel-preset-es2015": "^6.16.0",
"babel-preset-react": "^6.16.0",
"babel-preset-stage-0": "^6.16.0",
"eslint": "^3.7.0",
"eslint-config-airbnb": "^10.0.1",
"eslint-plugin-import": "^1.16.0",
"eslint-plugin-jsx-a11y": "^2.2.2",
"eslint-plugin-react": "^6.3.0",
"html-webpack-plugin": "^2.22.0",
"html-webpack-template": "^5.3.0",
"react-dom": "^15.3.2",
"react-transform-catch-errors": "^1.0.2",
"react-transform-hmr": "^1.0.4",
"redbox-react": "^1.3.1",
"webpack": "^1.13.2",
"webpack-dev-server": "^1.16.1"
},
"peerDependencies": {
"react": "^15.3.2"
},
"dependencies": {
"prop-types": "^15.5.10"
}
}