forked from alienkitty/alien.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·42 lines (42 loc) · 982 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
37
38
39
40
41
42
{
"name": "alien.js",
"version": "0.19.0",
"description": "Future web pattern",
"homepage": "https://alien.js.org/",
"keywords": [
"alien",
"alien.js",
"html5",
"css3",
"webgl",
"webaudio"
],
"author": "pschroen",
"repository": {
"type": "git",
"url": "https://github.com/pschroen/alien.js"
},
"bugs": {
"url": "https://github.com/pschroen/alien.js/issues"
},
"license": "MIT",
"type": "module",
"main": "index.js",
"sideEffects": false,
"scripts": {
"build": "rollup -c",
"dev": "concurrently --names \"ROLLUP,HTTP\" -c \"bgBlue.bold,bgGreen.bold\" \"rollup -c -w -m inline\" \"servez public\"",
"start": "servez public",
"travis": "npm run build"
},
"dependencies": {
"three": "latest"
},
"devDependencies": {
"@rollup/plugin-node-resolve": "^11.2.1",
"concurrently": "^6.0.2",
"rollup": "^2.45.2",
"rollup-plugin-bundleutils": "^1.2.3",
"servez": "^1.11.0"
}
}