forked from firtoz/react-three-renderer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
110 lines (110 loc) · 3.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
105
106
107
108
109
110
{
"name": "react-three-renderer",
"version": "2.3.2",
"description": "Render into a three.js canvas using React.",
"main": "./lib/React3.js",
"scripts": {
"compile": "gulp babel",
"prepublish": "not-in-install && npm run compile && npm test || in-install",
"test": "npm run test-internal -loglevel silent && npm run test-prod -loglevel silent",
"test-internal": "npm run eslint-internal -loglevel silent && npm run karma-src -loglevel silent && npm run karma-lib -loglevel silent",
"test-prod": "bash -c \"(export NODE_ENV=production; npm run test-internal --loglevel silent)\"",
"karma-single": "karma start ./tests/karma.conf.js --single-run",
"karma": "karma start ./tests/karma.conf.js",
"karma-prod": "bash -c \"(export NODE_ENV=production; npm run karma -loglevel silent)\"",
"karma-src": "bash -c \"(export KARMA_SRC=true; npm run karma-single -loglevel silent)\"",
"karma-lib": "bash -c \"(export KARMA_LIB=true; npm run karma-single -loglevel silent)\"",
"karma-src-prod": "bash -c \"(export NODE_ENV=production; npm run karma-src -loglevel silent)\"",
"karma-lib-prod": "bash -c \"(export NODE_ENV=production; npm run karma-lib -loglevel silent)\"",
"eslint-internal": "eslint --cache ./src/ ./docs/src/ ./tests/src/ --ext .js --ext .jsx",
"eslint": "npm run eslint-internal -loglevel silent || true",
"tdd": "bash -c \"(export KARMA_TDD=true; npm run karma)\"",
"tdd-prod": "bash -c \"(export KARMA_TDD=true; npm run karma-prod)\"",
"cover": "bash -c \"(export KARMA_COVERAGE=true; npm run karma-src)\""
},
"author": "Firtina \"toxicFork\" Ozbalikci",
"keywords": [
"react",
"three.js"
],
"license": "MIT",
"dependencies": {
"fbjs": "0.8.4"
},
"peerDependencies": {
"react": "~15.3.0",
"three": ">=0.78.0 < 0.80.0"
},
"devDependencies": {
"babel-cli": "6.11.4",
"babel-core": "6.13.2",
"babel-eslint": "6.1.2",
"babel-loader": "6.2.5",
"babel-plugin-transform-decorators-legacy": "1.3.4",
"babel-plugin-transform-runtime": "6.12.0",
"babel-polyfill": "6.13.0",
"babel-preset-es2015": "6.13.2",
"babel-preset-react": "6.11.1",
"babel-preset-stage-0": "6.5.0",
"babel-register": "6.11.6",
"babel-runtime": "6.11.6",
"chai": "3.5.0",
"del": "2.2.2",
"dirty-chai": "1.2.2",
"eslint": "3.3.1",
"eslint-config-airbnb": "10.0.1",
"eslint-plugin-import": "1.13.0",
"eslint-plugin-jsx-a11y": "^2.1.0",
"eslint-plugin-react": "6.1.2",
"estraverse-fb": "1.3.1",
"ghooks": "1.3.2",
"gulp": "3.9.1",
"gulp-babel": "6.1.2",
"gulp-util": "3.0.7",
"in-publish": "2.0.0",
"isparta-loader": "2.0.0",
"karma": "1.2.0",
"karma-chai": "0.1.0",
"karma-chrome-launcher": "2.0.0",
"karma-coverage": "1.1.1",
"karma-mocha": "1.1.1",
"karma-sourcemap-loader": "0.3.7",
"karma-spec-reporter": "0.0.26",
"karma-travis-fold-reporter": "1.0.1",
"karma-webpack": "1.8.0",
"mocha": "3.0.2",
"mocha-loader": "0.7.1",
"pngjs2": "2.0.0",
"react": "15.3.1",
"react-dom": "15.3.1",
"sinon": "2.0.0-pre",
"source-map-support": "0.4.2",
"stream-to-string": "1.1.0",
"three": "0.79.0",
"webpack": "1.13.2",
"webpack-dev-server": "1.14.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",
"config": {
"ghooks": {
"pre-commit": "echo Running eslint before commit && npm run eslint-internal -loglevel silent"
}
}
}