-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
41 lines (41 loc) · 1.01 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
{
"name": "rollup-plugin-glsl",
"version": "1.3.0",
"description": "Converts GLSL shader source files to modules",
"main": "dist/rollup-plugin-glsl.js",
"jsnext:main": "dist/rollup-plugin-glsl.mjs",
"files": [
"dist"
],
"dependencies": {
"rollup-pluginutils": "^2.0.1",
"magic-string": "^0.21.3"
},
"devDependencies": {
"buble": "^0.10.6",
"mocha": "^2.5.3",
"rollup": "^0.31.0",
"rollup-plugin-buble": "^0.10.0"
},
"scripts": {
"build": "rollup -c",
"pretest": "npm run build",
"test": "mocha test/*.js --compilers js:buble/register",
"prepublish": "npm test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/vwochnik/rollup-plugin-glsl.git"
},
"keywords": [
"rollup-plugin",
"glsl",
"shader"
],
"author": "Vincent Wochnik <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/vwochnik/rollup-plugin-glsl/issues"
},
"homepage": "https://github.com/vwochnik/rollup-plugin-glsl"
}