-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
55 lines (55 loc) · 1.67 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
{
"name": "pipboy",
"version": "0.0.8",
"description": "Experimental pipboy desktop app for Fallout 4",
"main": "main.js",
"scripts": {
"lint": "eslint .",
"test": "echo \"Tests are cool, we should do those.\"",
"start": "electron main.js",
"build": "npm run build:osx && npm run build:win32 && npm run build:linux",
"build:osx": "electron-packager ./ PipBoy --platform=darwin --arch=x64 --version=0.35.1",
"build:win32": "electron-packager ./ PipBoy --platform=win32 --arch=x64 --version=0.35.1",
"build:linux": "electron-packager ./ PipBoy --platform=linux --arch=x64 --version=0.35.1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/RobCoIndustries/pipboy.git"
},
"keywords": [
"Fallout4",
"pipboy"
],
"author": "Kyle Kelley <[email protected]>",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/RobCoIndustries/pipboy/issues"
},
"homepage": "https://github.com/RobCoIndustries/pipboy#readme",
"devDependencies": {
"babel-cli": "^6.3.17",
"babel-core": "^6.3.17",
"babel-eslint": "^4.1.6",
"babel-preset-es2015": "^6.1.18",
"electron-compile": "^1.0.1",
"electron-compilers": "^1.0.1",
"electron-packager": "^5.1.1",
"electron-prebuilt": "^0.35.1",
"eslint": "^1.10.3",
"eslint-plugin-babel": "^3.0.0",
"eslint-plugin-react": "^3.11.3"
},
"dependencies": {
"color": "^0.10.1",
"fluorine-lib": "^0.2.0",
"history": "1.13.1",
"invariant": "^2.2.0",
"normalize.css": "^3.0.3",
"pipboylib": "^1.1.1",
"radium": "^0.15.3",
"react": "^0.14.3",
"react-dom": "^0.14.3",
"react-router": "^1.0.2",
"rx": "^4.0.7"
}
}