-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.11 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.11 KB
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
{
"name": "pipboycli",
"version": "0.0.4",
"description": "A blessed cli for your Fallout 4 PipBoy",
"main": "index.js",
"bin": {
"pipboycli": "./lib/index.js"
},
"scripts": {
"prebuild": "mkdirp lib && npm run clean",
"build": "npm run build:es5",
"build:es5": "babel src --out-dir lib/ --source-maps",
"livereload": "nodemon src/index.js --exec babel-node",
"clean": "rimraf lib/*",
"prepublish": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/RobCoIndustries/pipboycli.git"
},
"author": "Kyle Kelley <rgbkrk@gmail.com>",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/RobCoIndustries/pipboycli/issues"
},
"homepage": "https://github.com/RobCoIndustries/pipboycli#readme",
"dependencies": {
"blessed": "^0.1.81",
"pipboylib": "^1.1.0",
"rx": "^4.0.7"
},
"devDependencies": {
"babel": "^6.1.18",
"babel-cli": "^6.3.15",
"babel-preset-es2015": "^6.1.18",
"mkdirp": "^0.5.1",
"nodemon": "^1.8.1",
"rimraf": "^2.4.4"
},
"babel": {
"presets": [
"es2015"
]
}
}