This repository has been archived by the owner on Jul 20, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 155
/
package.json
104 lines (104 loc) · 2.79 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
{
"name": "react-three-renderer",
"version": "3.2.4",
"description": "Render into a three.js canvas using React.",
"main": "./lib/React3.js",
"scripts": {
"compile": "gulp babel",
"prepublish": "in-publish && npm test || not-in-publish",
"doc": "gulp doc",
"test": "gulp test",
"tdd": "gulp tdd"
},
"author": "Firtina \"toxicFork\" Ozbalikci",
"keywords": [
"react",
"three.js"
],
"license": "MIT",
"dependencies": {
"fbjs": "0.8.14",
"prop-types": "15.5.10",
"raf": "^3.3.2"
},
"peerDependencies": {
"react": "~15.6.1",
"react-dom": "~15.6.1",
"three": "~0.86.0"
},
"devDependencies": {
"babel-cli": "6.24.1",
"babel-core": "6.25.0",
"babel-eslint": "7.2.1",
"babel-loader": "7.1.1",
"babel-plugin-transform-decorators-legacy": "1.3.4",
"babel-plugin-transform-runtime": "6.23.0",
"babel-polyfill": "6.23.0",
"babel-preset-es2015": "6.24.1",
"babel-preset-react": "6.24.1",
"babel-preset-stage-0": "6.24.1",
"babel-register": "6.24.1",
"babel-runtime": "6.25.0",
"chai": "4.1.0",
"del": "3.0.0",
"dirty-chai": "2.0.1",
"eslint": "4.18.2",
"eslint-config-airbnb": "14.1.0",
"eslint-plugin-import": "2.2.0",
"eslint-plugin-jsx-a11y": "4.0.0",
"eslint-plugin-react": "6.10.3",
"estraverse-fb": "1.3.2",
"gulp": "github:gulpjs/gulp#4.0",
"gulp-babel": "6.1.2",
"gulp-cached": "^1.1.1",
"gulp-eslint": "^3.0.1",
"gulp-util": "^3.0.8",
"in-publish": "^2.0.0",
"isparta-loader": "2.0.0",
"karma": "1.7.0",
"karma-chai": "0.1.0",
"karma-chrome-launcher": "2.2.0",
"karma-coverage": "1.1.1",
"karma-detect-browsers": "^2.2.6",
"karma-edge-launcher": "^0.4.2",
"karma-firefox-launcher": "^1.0.1",
"karma-mocha": "1.3.0",
"karma-safari-launcher": "^1.0.0",
"karma-safaritechpreview-launcher": "^0.0.6",
"karma-sourcemap-loader": "0.3.7",
"karma-spec-reporter": "0.0.31",
"karma-travis-fold-reporter": "1.0.1",
"karma-webpack": "2.0.4",
"minimist": "^1.2.0",
"mocha": "3.4.2",
"mocha-loader": "1.1.1",
"pngjs2": "2.0.0",
"puppeteer": "^0.12.0",
"react": "15.6.1",
"react-dom": "15.6.1",
"sinon": "2.4.1",
"source-map-support": "0.4.15",
"stream-to-string": "1.1.0",
"three": "0.86.0",
"webpack": "3.4.1",
"webpack-dev-server": "2.6.1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/toxicFork/react-three-renderer.git"
},
"babel": {
"presets": [
"es2015",
"stage-0",
"react"
],
"plugins": [
"transform-decorators-legacy"
]
},
"bugs": {
"url": "https://github.com/toxicFork/react-three-renderer/issues"
},
"homepage": "https://github.com/toxicFork/react-three-renderer#readme"
}