forked from singuerinc/dial
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 1.04 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
{
"name": "dial",
"version": "2.0.0",
"description": "Dial is a (beta) Chrome Extension. It's a launcher of frequent websites that you define. It replaces the newtab page on Chrome.",
"main": "index.js",
"scripts": {
"build:watch": "watchify -t vueify -e src/main.js -o build.js",
"build": "browserify -t vueify -e src/main.js -o build.js",
"serve": "serve",
"start": "concurrently 'yarn run serve' 'yarn run build:watch'",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/singuerinc/dial.git"
},
"author": "singuerinc",
"license": "ISC",
"bugs": {
"url": "https://github.com/singuerinc/dial/issues"
},
"homepage": "https://github.com/singuerinc/dial#readme",
"devDependencies": {
"babel-runtime": "^5.8.29",
"browserify": "^14.4.0",
"serve": "^9.6.0",
"vue": "^1.0.6",
"vue-hot-reload-api": "^1.2.1",
"vue-router": "^0.7.5",
"vueify": "^5.0.3",
"vueify-insert-css": "^1.0.0",
"watchify": "^3.9.0"
}
}