-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
43 lines (43 loc) · 1.16 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
{
"name": "steam-roms-importer",
"author": "Benjamin Michel",
"description": "Easily make your roms available as shortcuts in Steam.",
"version": "1.0.2",
"repository": {
"type": "git",
"url": "https://github.com/SBRK/steam-roms-importer.git"
},
"scripts": {
"dev": "nodemon --exec babel-node ./src/main.js",
"build": "rimraf dist && babel src --out-dir dist --copy-files",
"prepublish": "npm run build",
"start": "node ./dist/main.js",
"lint": "eslint ./src",
"lint-fix": "eslint ./src --fix"
},
"bin": {
"steam-roms-importer": "./bin/cli.js"
},
"dependencies": {
"bluebird": "^3.5.0",
"colors": "^1.1.2",
"lodash": "^4.17.2",
"node-steam-shortcuts": "^1.1.0",
"path": "^0.12.7",
"request": "^2.81.0",
"superagent": "^2.3.0",
"winreg": "^1.2.4"
},
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-preset-es2015": "^6.18.0",
"eslint": "^3.19.0",
"eslint-config-airbnb": "^15.0.1",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^5.0.1",
"eslint-plugin-react": "^7.0.1",
"nodemon": "^1.11.0",
"rimraf": "^2.6.1"
},
"license": "GPLv3"
}