-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
49 lines (49 loc) · 1.33 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
{
"name": "react-drawable-canvas",
"version": "1.1.1",
"description": "A React.js component for drawable canvas.",
"main": "lib/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"compile": "babel --presets react,es2015 ./lib/index.jsx > ./lib/index.js && uglifyjs ./lib/index.js --compress --mangle --output ./lib/index.js",
"prepublish": "npm run compile"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jonhni/react-drawable-canvas.git"
},
"keywords": [
"drawing",
"react-component",
"drawable-canvas",
"canvas",
"drawable",
"draw"
],
"author": "jonhni",
"license": "MIT",
"bugs": {
"url": "https://github.com/jonhni/react-drawable-canvas/issues"
},
"homepage": "https://github.com/jonhni/react-drawable-canvas#readme",
"devDependencies": {
"react-tools": "^0.13.3",
"babel-cli": "6.22.2",
"babel-core": "6.22.1",
"babel-plugin-transform-react-jsx": "6.22.0",
"babel-preset-es2015": "6.22.0",
"babel-preset-react": "6.22.0",
"uglify-js": "2.7.5",
"react": "^15.6.0",
"react-dom": "^15.6.0",
"prop-types": "^15.5.8"
},
"peerDependencies": {
"react": "^15.6.0",
"react-dom": "^15.6.0",
"prop-types": "^15.5.8"
},
"dependencies": {
"object-assign": "^4.1.1"
}
}