-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
41 lines (41 loc) · 1.03 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
{
"name": "faux",
"description": "A virtual webpage operating system (pre-alpha)",
"version": "0.0.4",
"main": "dist/fauxOS.js",
"browser": "dist/fauxOS.min.js",
"devDependencies": {
"gulp": "^3.9.1",
"gulp-better-rollup": "^1.1.1",
"gulp-cli": "^1.3.0",
"gulp-inject-string": "^1.1.0",
"gulp-rename": "^1.2.2"
},
"scripts": {
"build": "gulp",
"test": "echo 'Open your browser to `http://localhost:8000`' && python -m SimpleHTTPServer",
"dev": "gulp watch",
"clean": "yarn cache clean && rm -rf node_modules/ && rm -rf build/ && rm -rf dist/",
"reset": "yarn run clean && yarn && yarn run build"
},
"keywords": [
"faux",
"fauxOS",
"os",
"operating system",
"kernel",
"browser",
"virtual"
],
"author": "Daniel Ethridge | @wlib",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/fauxOS/faux.git"
},
"bugs": {
"url": "https://github.com/fauxOS/faux/issues"
},
"homepage": "https://faux.js.org",
"dependencies": {}
}