-
Notifications
You must be signed in to change notification settings - Fork 220
/
package.json
50 lines (50 loc) · 1.69 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
{
"name": "webgl2-fundamentals",
"version": "0.0.0",
"description": "Some WebGL2 Tutorials designed for real WebGL and not 20yr old OpenGL",
"main": "index.js",
"devDependencies": {
"@gfxfundamentals/lesson-builder": "git+https://github.com/gfxfundamentals/lesson-builder.git#v1.17.5",
"@gfxfundamentals/live-editor": "github:gfxfundamentals/live-editor#v1.3.1",
"eslint-plugin-google-camelcase": "0.0.2",
"eslint-plugin-html": "6.1.1",
"eslint-plugin-one-variable-per-var": "0.0.3",
"eslint-plugin-optional-comma-spacing": "0.0.4",
"eslint-plugin-require-trailing-comma": "0.0.1",
"grunt": "1.3.0",
"grunt-cli": "1.3.2",
"grunt-contrib-clean": "2.0.0",
"grunt-contrib-copy": "1.0.0",
"grunt-contrib-watch": "1.1.0",
"grunt-eslint": "23.0.0",
"grunt-jsdoc": "2.4.1",
"ld-check-dependencies": "1.2.1",
"load-grunt-tasks": "5.1.0",
"minami": "1.2.3",
"servez": "1.11.0"
},
"scripts": {
"build": "ld-check-dependencies && grunt",
"build-ci": "grunt",
"watch": "ld-check-dependencies && grunt buildwatch",
"watch-no-check": "grunt buildwatch",
"pre-push": "ld-check-dependencies && grunt pre-push",
"pre-build": "grunt pre-push",
"start": "servez out",
"eslint": "ld-check-dependencies && grunt eslint",
"test": "check-all-the-errors out \"*.html\""
},
"repository": {
"type": "git",
"url": "git://github.com/gfxfundamentals/webgl2-fundamentals.git"
},
"keywords": [
"WebGL"
],
"author": "GFXFundamentals",
"license": "MIT",
"bugs": {
"url": "https://github.com/gfxfundamentals/webgl2-fundamentals/issues"
},
"homepage": "https://github.com/gfxfundamentals/webgl2-fundamentals"
}