-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 842 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 842 Bytes
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
{
"name": "pixels2text",
"version": "3.2.0",
"description": "Takes images and outputs shaded text blocks as strings for each line, to store in a JavaScript Object",
"main": "index.js",
"repository": "git@github.com:Superpencil/pixels2text.git",
"scripts": {
"start": "webpack-dev-server --env development",
"build": "webpack --env production"
},
"author": "Pascal Pixel <pascal@superpencil.com>",
"license": "MIT",
"devDependencies": {
"babel-core": "^6.21.0",
"babel-loader": "^6.2.10",
"babel-preset-es2015": "^6.18.0",
"babel-preset-react": "^6.16.0",
"babel-preset-stage-0": "^6.16.0",
"path": "^0.12.7",
"webpack": "2.2.0-rc.2",
"webpack-dev-server": "2.2.0-rc.0",
"webpack-merge": "^1.1.1"
},
"dependencies": {
"react": "^15.4.1",
"react-dom": "^15.4.1"
}
}