-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 855 Bytes
/
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
{
"name": "gpu-games-of-lives",
"version": "0.4.1",
"description": "web toy for making variants of game of life",
"main": "main.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "npx browserify -t glslify main.js -o bundle.js",
"start": "npx budo main.js:bundle.js --live -- bundle.js -t glslify"
},
"author": "Cole Granof",
"license": "ISC",
"dependencies": {
"browserify": "^16.5.1",
"budo": "^11.6.3",
"glslify": "^7.0.0"
},
"devDependencies": {
"@babel/core": "^7.9.6",
"babel-preset": "^1.1.4",
"babelify": "^10.0.0"
},
"repository": "https://github.com/bandaloo/gpu-games-of-lives",
"browserify": {
"transform": [
[
"babelify",
{
"presets": [
"@babel/preset-env"
]
}
]
]
}
}