-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
61 lines (61 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"name": "shader-studio",
"version": "0.0.1",
"description": "shader studio, just for fun",
"main": "index.js",
"scripts": {
"extract": "npmsrcify extract",
"create": "ssc create",
"build": "ssc build",
"lint": "eslint .",
"fix": "eslint --fix ./demos",
"commitmsg": "commitlint -E GIT_PARAMS",
"http": "hs -o"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jasonChen1982/shader-studio.git"
},
"keywords": [
"shader",
"glsl",
"tofu",
"three",
"three.js",
"tofu.js",
"threejs",
"tofujs"
],
"author": "jasonChen1982",
"license": "MIT",
"bugs": {
"url": "https://github.com/jasonChen1982/shader-studio/issues"
},
"homepage": "https://github.com/jasonChen1982/shader-studio#readme",
"devDependencies": {
"@commitlint/cli": "^7.0.0",
"@commitlint/config-conventional": "^7.0.1",
"dat.gui": "^0.7.0",
"eslint": "^4.17.0",
"http-server": "^0.11.1",
"husky": "^0.14.3",
"npmsrcify": "0.0.2",
"shader-studio-cli": "^1.1.0",
"stats.js": "^0.17.0",
"three": "^0.89.0",
"tofu.js": "^0.6.3",
"tofu.shaderprimer": "0.0.1"
},
"config": {
"npmsrcify": {
"modules": [
"dat.gui",
"stats.js",
"tofu.js",
"tofu.shaderprimer",
"three"
],
"output": "./lib"
}
}
}