-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
61 lines (61 loc) · 1.67 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
53
54
55
56
57
58
59
60
61
{
"name": "openframe-glslviewer",
"version": "0.2.8",
"description": "Openframe extension which adds support for shaders via glslViewer",
"main": "extension.js",
"scripts": {
"install": "./install.sh",
"uninstall": "./uninstall.sh",
"patch-release": "npm version patch && npm publish && git push --follow-tags",
"lint": "./node_modules/.bin/eslint extension.js test/**",
"coveralls": "cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage",
"test": "npm run lint && ./node_modules/.bin/istanbul cover ./node_modules/.bin/_mocha",
"test-coveralls": "npm run lint && ./node_modules/.bin/istanbul cover ./node_modules/.bin/_mocha --report lcovonly -- -R spec && npm run coveralls"
},
"bin": {
"glslLoader": "./bin/glslLoader"
},
"keywords": [
"openframe",
"extension",
"format",
"shader",
"openframe-extension",
"openframe-glslviewer",
"glslViewer"
],
"author": {
"name": "Jonathan Wohl",
"url": "http://jonathanwohl.com"
},
"contributors": [
{
"name": "Jonathan Wohl",
"url": "http://jonathanwohl.com"
},
{
"name": "Ishac Bertran",
"url": "http://ishacbertran.com"
},
{
"name": "Patricio Gonzalez Vivo",
"url": "http://patriciogonzalezvivo.com"
}
],
"license": "GPL-3.0",
"devDependencies": {
"coveralls": "^2.11.9",
"eslint": "^2.8.0",
"istanbul": "^0.4.2",
"mocha": "^2.3.4",
"sinon": "^1.17.2"
},
"repository": {
"type": "git",
"url": "https://github.com/OpenframeProject/Openframe-glslViewer"
},
"dependencies": {
"openframe-extension": "^0.1.0",
"debug": "^2.2.0"
}
}