-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
40 lines (40 loc) · 1.2 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
{
"name": "are-you-around",
"version": "1.1.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "npm run build && electron .",
"start:dev": "npm run watch & NODE_ENV=development electron .",
"test": "standard",
"build": "browserify app/index.js -p [ css-extract -o app/dist/bundle.css ] -o /dev/null",
"watch": "watchify app/index.js -p [ css-extract -o app/dist/bundle.css ] -o /dev/null",
"rebuild": "npm rebuild --runtime=electron --target=1.3.4 --disturl=https://atom.io/download/atom-shell --build-from-source"
},
"browserify": {
"transform": [
"sheetify/transform"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/joehand/are-you-around.git"
},
"author": "Joe Hand <[email protected]> (https://joeahand.com/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/joehand/are-you-around/issues"
},
"homepage": "https://github.com/joehand/are-you-around#readme",
"dependencies": {
"choo": "^3.2.2",
"electron-prebuilt": "^1.3.4",
"peer-status-feed": "^1.1.1",
"sheetify": "^5.1.0",
"tachyons": "^4.1.2"
},
"devDependencies": {
"css-extract": "^1.1.2",
"watchify": "^3.7.0"
}
}