-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.35 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
{
"name": "@ahmerhh/webgraphiclibrary-texture",
"version": "2.0.2",
"description": "WebGL texture wrapper.",
"main": "dist/index.js",
"scripts": {
"start": "budo example/index.js --live -- -t babelify",
"test": "browserify test/index.js -t babelify | browser-run --static . | tap-spec",
"build": "browserify src/index.js -t babelify -s @ahmerhh/WebGraphicLibrary-texture > dist/index.js",
"prepublish": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ahmerhh/WebGraphicLibrary-texture.git"
},
"keywords": [
"WebGL",
"texture"
],
"author": "Ahmer <ahmerhh@proton.me>",
"author2": "Ahmer <ahmerhabibb@gmail.com",
"license": "MIT",
"bugs": {
"url": "https://github.com/ahmerhh/WebGraphicLibrary-texture/issues"
},
"homepage": "https://github.com/ahmerhh/WebGraphicLibrary-texture#readme",
"devDependencies": {
"babel-preset-es2015": "^6.3.13",
"babelify": "^7.2.0",
"browser-run": "^3.0.8",
"browserify": "^13.0.0",
"budo": "^8.0.3",
"tap-spec": "^4.1.1",
"tape": "^4.4.0"
},
"dependencies": {
"@ahmerhh/geo-plane": "^1.0.1",
"@ahmerhh/gl-buffer": "^1.0.2",
"@ahmerhh/gl-context": "^1.0.5",
"@ahmerhh/gl-program": "^1.0.3",
"math-functions": "^1.0.1"
},
"directories": {
"example": "example",
"test": "test"
}
}