-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.46 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.46 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
{
"name": "react-createjs",
"version": "0.0.1-alpha",
"description": "React implementation of CreateJS canvas rendering.",
"main": "./dist/react-createjs.js",
"scripts": {
"test": "make test",
"postinstall": "make build",
"build": "make build",
"dev": "make dev"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hhhonzik/react-createjs.git"
},
"keywords": [
"react",
"createjs",
"easeljs",
"canvas",
"html5"
],
"author": "hhhonzik <me@janstepanovsky.cz>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/hhhonzik/react-createjs/issues"
},
"homepage": "https://github.com/hhhonzik/react-createjs#readme",
"dependencies": {
"babel-cli": "^6.5.1",
"babel-core": "^6.5.1",
"babel-plugin-add-module-exports": "^0.1.2",
"babel-plugin-transform-runtime": "^6.5.0",
"babel-preset-es2015": "^6.5.0",
"babel-preset-react": "^6.5.0",
"babel-preset-react-hmre": "^1.1.0",
"babel-preset-stage-0": "^6.5.0",
"empty-object": "^1.0.0",
"fbjs": "^0.7.2",
"react": "^0.14.7",
"react-canvas": "^1.1.0"
},
"devDependencies": {
"babel-eslint": "^4.1.8",
"babel-loader": "^6.2.2",
"eslint": "^1.10.3",
"eslint-plugin-babel": "^3.1.0",
"eslint-plugin-react": "^3.16.1",
"express": "^4.13.3",
"react-dom": "^0.14.7",
"webpack": "^1.12.9",
"webpack-dev-middleware": "^1.4.0",
"webpack-hot-middleware": "^2.6.0"
}
}