-
Notifications
You must be signed in to change notification settings - Fork 920
/
Copy pathpackage.json
48 lines (48 loc) · 1.19 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
{
"name": "react-canvas",
"version": "1.3.0",
"description": "High performance <canvas> rendering for React components",
"main": "lib/ReactCanvas.js",
"repository": {
"type": "git",
"url": "https://github.com/Flipboard/react-canvas.git"
},
"scripts": {
"start": "./node_modules/.bin/gulp",
"test": "./node_modules/.bin/jest"
},
"keywords": [
"react",
"canvas"
],
"author": "Michael Johnston <mj@flipboard.com>",
"license": "BSD-3-Clause",
"homepage": "https://github.com/Flipboard/react-canvas",
"bugs": {
"url": "https://github.com/Flipboard/react-canvas/issues"
},
"devDependencies": {
"babel-core": "^6.22.1",
"babel-loader": "^6.2.10",
"babel-preset-react": "^6.22.0",
"brfs": "^1.4.3",
"del": "^2.2.2",
"envify": "^4.0.0",
"gulp": "^3.9.1",
"gulp-connect": "^5.0.0",
"jest": "^18.1.0",
"react": "^15.0.0",
"react-dom": "^15.0.0",
"transform-loader": "^0.2.3",
"webpack": "^1.14.0",
"webpack-stream": "^3.2.0"
},
"peerDependencies": {
"react": "^15.0.0"
},
"dependencies": {
"fbjs": "^0.8.8",
"linebreak": "^0.3.0",
"scroller": "git://github.com/mjohnston/scroller"
}
}