forked from browserhtml/browserhtml
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
85 lines (85 loc) · 2.56 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "browser.html",
"description": "Experimental Servo browser built in HTML",
"version": "0.1.17",
"homepage": "https://github.com/browserhtml/browserhtml",
"repository": {
"type": "git",
"url": "https://github.com/browserhtml/browserhtml.git",
"web": "https://github.com/browserhtml/browserhtml"
},
"bugs": {
"url": "http://github.com/browserhtml/browserhtml/issues/"
},
"browser": {
"@driver": "./src/driver/virtual-dom/index.js"
},
"main": "./main.js",
"scripts": {
"develop": "gulp develop",
"start": "gulp live",
"server": "gulp server",
"gecko": "gulp gecko",
"servo": "gulp servo",
"deploy": "./.bin/deploy.sh",
"build": "NODE_ENV=production gulp build",
"build-cargo": "NODE_ENV=production gulp cargo",
"build-server": "gulp build-server",
"live-server": "gulp live-server",
"flow": "flow check",
"lint": "standard-flow",
"test": "npm run flow && npm run lint",
"status": "flow status"
},
"dependencies": {
"eased": "0.1.0",
"pouchdb": "4.0.0",
"querystring": "0.2.0",
"reflex": "0.4.1",
"reflex-virtual-dom-driver": "0.2.3",
"tinycolor2": "1.1.2"
},
"devDependencies": {
"babel-cli": "6.10.1",
"babel-plugin-syntax-class-properties": "6.8.0",
"babel-plugin-syntax-flow": "6.8.0",
"babel-plugin-transform-class-properties": "6.10.2",
"babel-plugin-transform-es2015-modules-umd": "6.4.3",
"babel-plugin-transform-flow-strip-types": "6.4.0",
"babel-polyfill": "6.7.4",
"babel-preset-es2015": "6.9.0",
"babel-register": "6.7.2",
"babelify": "7.3.0",
"browserify": "13.0.0",
"browserify-hmr": "0.3.1",
"ecstatic": "~3.0.0",
"flow-bin": "0.28.0",
"gulp": "3.9.1",
"gulp-sequence": "0.4.5",
"gulp-sourcemaps": "1.6.0",
"gulp-uglify": "1.5.3",
"gulp-util": "3.0.7",
"gulp-watch": "4.3.5",
"hotify": "0.1.0",
"standard-flow": "1.0.0",
"vinyl-buffer": "1.0.0",
"vinyl-source-stream": "1.1.0",
"watchify": "3.7.0"
},
"standard-flow": {
"ignore": [
"src/About/Newtab/Demos/evil_ad/vendor/coffee-physics.min.js",
"src/About/Repl/Repl/Host/Window.js",
"src/Browser/Navigators.js",
"src/Browser/Navigators/Navigator/Assistant/Search.js",
"src/Browser/Navigators/Navigator/Assistant/Suggestion.js",
"src/Browser/Navigators/Navigator/Progress.js",
"src/Browser/Navigators/Navigator/WebView/Navigation.js",
"test/new_tab_test.js"
]
},
"contributors": [
"The Browserhtml Project Developers"
],
"license": "MPL-2.0"
}