-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 931 Bytes
/
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
{
"name": "rollup-plugin-threejs-legacy-import",
"version": "1.0.3",
"description": "A Rollup plugin to transform Three.js legacy files (non ES6 modules) to ES6 modules",
"main": "src/threejs-legacy-import.js",
"engines": {
"node": ">=6.9.0"
},
"scripts": {
"example": "rollup -c"
},
"repository": "rollup/rollup-plugin-legacy",
"keywords": [
"rollup",
"rollup-plugin",
"three.js",
"transform"
],
"author": "Tibor Szász",
"license": "MIT",
"bugs": {
"url": "https://github.com/tiborsaas/rollup-plugin-threejs-legacy-import/issues"
},
"homepage": "https://github.com/tiborsaas/rollup-plugin-threejs-legacy-import#README",
"dependencies": {
"acorn": "^5.1.1",
"estree-walker": "^0.5.0",
"magic-string": "^0.22.4"
},
"devDependencies": {
"rollup": "^0.36.3",
"rollup-plugin-node-resolve": "^3.0.0",
"three": "github:mrdoob/three.js#dev"
}
}