-
Notifications
You must be signed in to change notification settings - Fork 183
/
package.json
52 lines (52 loc) · 1.52 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
{
"name": "glslCanvas",
"version": "0.2.6",
"description": "Simple GLSL Fragment Shader Sandbox",
"main": "dist/GlslCanvas.js",
"module": "dist/GlslCanvas.es.js",
"jsnext:main": "dist/GlslCanvas.es.js",
"scripts": {
"build": "rollup -c",
"dev": "rollup -c -w",
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "jshint *.js src/ || true; jscs *.js src/ || true"
},
"repository": {
"type": "git",
"url": "git+https://github.com/patriciogonzalezvivo/glslCanvas.git"
},
"keywords": [
"glsl",
"shader",
"sandbox",
"fragment",
"browser"
],
"author": {
"name": "Patricio Gonzalez Vivo",
"url": "http://patriciogonzalezvivo.com"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/patriciogonzalezvivo/glslCanvas/issues"
},
"homepage": "https://github.com/patriciogonzalezvivo/glslCanvas#readme",
"devDependencies": {
"babel": "6.23.0",
"babel-core": "^6.26.3",
"babel-env": "^2.4.1",
"babel-plugin-external-helpers": "^6.22.0",
"babelify": "^8.0.0",
"rollup": "^0.50.1",
"rollup-plugin-babel": "^3.0.7",
"rollup-plugin-commonjs": "^8.4.1",
"rollup-plugin-node-resolve": "^3.4.0",
"rollup-plugin-sizes": "^0.4.2",
"rollup-plugin-uglify": "^2.0.1",
"uglify-es": "^3.3.9"
},
"dependencies": {
"xhr": "^2.6.0"
},
"browserify-shim": {}
}