forked from MattMcFarland/react-darkroom
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.48 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.48 KB
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
{
"name": "react-darkroom",
"version": "0.3.7",
"description": "HTML5 Image upload and edit React Component.",
"engines": {
"node": ">=4.2.1"
},
"files": [
"README.md",
"index.js",
"lib/"
],
"scripts": {
"test": "eslint src --fix",
"start": "webpack && webpack-dev-server",
"prepublish": "npm run test && npm run build",
"build": "rm -rf lib/* && babel src --ignore __tests__ --out-dir lib && npm run copy",
"copy": "npm run copy:fonts && npm run copy:css",
"copy:fonts": "cp -R src/fonts lib",
"copy:css": "cp -R src/css lib"
},
"main": "lib/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/MattMcFarland/react-darkroom.git"
},
"keywords": [
"react-component",
"react",
"component",
"image",
"image",
"editor",
"photo",
"crop",
"rotate"
],
"devDependencies": {
"babel-cli": "^6.10.1",
"babel-eslint": "^6.1.2",
"babel-loader": "^6.2.4",
"babel-preset-es2015": "^6.9.0",
"babel-preset-react": "^6.11.1",
"eslint": "^3.1.1",
"eslint-plugin-babel": "^3.3.0",
"eslint-plugin-react": "^5.2.2",
"react": "^15.2.1",
"react-dom": "^15.2.1",
"webpack": "^1.13.1",
"webpack-dev-server": "^1.14.1"
},
"dependencies": {},
"author": "Matt McFarland",
"license": "MIT",
"bugs": {
"url": "https://github.com/MattMcFarland/react-darkroom/issues"
},
"homepage": "https://github.com/MattMcFarland/react-darkroom#readme"
}