-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
50 lines (50 loc) · 1.16 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": "esper",
"version": "0.12.1",
"description": "A low-level ES6 WebGL rendering framework",
"author": "Kevin Birk <birk.kevin@gmail.com>",
"main": "src/exports.js",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/kbirk/esper.git"
},
"files": [
"src"
],
"keywords": [
"webgl",
"graphics",
"3d",
"rendering"
],
"dependencies": {
"async": "2.4.1"
},
"devDependencies": {
"babel-preset-es2015": "6.24.1",
"babelify": "7.3.0",
"browserify": "14.4.0",
"del": "3.0.0",
"eslint-plugin-jsdoc": "3.1.0",
"gulp": "3.9.1",
"gulp-coveralls": "0.1.4",
"gulp-eslint": "4.0.0",
"gulp-istanbul": "1.1.2",
"gulp-mocha": "3.0.1",
"gulp-shell": "0.6.3",
"gulp-uglify": "3.0.0",
"jsdoc": "3.4.3",
"minami": "1.2.3",
"run-sequence": "1.2.2",
"vinyl-buffer": "1.0.0",
"vinyl-source-stream": "1.1.0",
"webgl-mock": "0.1.6"
},
"scripts": {
"build": "./node_modules/.bin/gulp build",
"test": "./node_modules/.bin/gulp test",
"coveralls": "./node_modules/.bin/gulp coveralls",
"lint": "./node_modules/.bin/gulp lint"
}
}