-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
73 lines (73 loc) · 2.58 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "mametool",
"version": "1.0.0",
"description": "",
"main": "src/QPNode.js",
"directories": {
"outputDir": "./outputs/current",
"binOutputDir": "/Volumes/Untitled/Emulators/QUICKPLAY/QuickPlayFrontend/qp/bin"
},
"config": {
"devFlags": "--dev",
"getSpecs": "find specs -name '*spec.js'",
"getSpecsSynctool": "find specs/synctool -name '*spec.js'"
},
"scripts": {
"start": "node src/QPNode.js mametool --output-dir $npm_package_directories_outputDir $npm_package_config_devFlags",
"mess-start": "npm run start -- --scan --softlists",
"full": "trash $npm_package_directories_outputDir && mkdir $npm_package_directories_outputDir && npm run start -- --scan --arcade --softlists",
"basedebug": "node --inspect-brk src/QPNode.js",
"debug": "npm run basedebug -- --output-dir $npm_package_directories_outputDir $npm_package_config_devFlags",
"fulldebug": "trash $npm_package_directories_outputDir && npm run debug --",
"test": "mocha -- ./specs/init.js $(eval $npm_package_config_getSpecs)",
"test-synctool": "mocha -- ./specs/init.js $(eval $npm_package_config_getSpecsSynctool)",
"package": "pkg src/QPNode.js -t win --out-path $npm_package_directories_binOutputDir",
"packageParallels": "pkg src/QPNode.js -t win --out-path /Volumes/[C]\\ My\\ Boot\\ Camp/Emulators/QUICKPLAY/QuickPlayFrontend/qp/bin",
"dist": "electron-builder --win --x64; \\cp -f -R dist/win-unpacked/ /Volumes/[C]\\ My\\ Boot\\ Camp/Emulators/QUICKPLAY/QuickPlayFrontend/qp/bin/QPElectron"
},
"build": {
"win": {
"target": "portable"
},
"directories": {
"app": "./qpElectron"
},
"electronVersion": "6.0.12"
},
"author": "",
"license": "ISC",
"dependencies": {
"acorn": "^6.3.0",
"commander": "^2.11.0",
"daggy": "^1.2.0",
"data.maybe": "^1.2.3",
"folktale": "^2.3.2",
"fs-extra": "^4.0.2",
"ini": "^1.3.4",
"levenshtein": "^1.0.5",
"mkdirp": "^0.5.1",
"pkg": "~4.4.9",
"ramda": "^0.24.1",
"replace-in-file": "^4.1.3",
"sanctuary": "^2.0.0",
"string-similarity": "^4.0.4",
"trash-cli": "^1.4.0",
"xml-stream": "^0.4.5"
},
"devDependencies": {
"chai": "^4.1.0",
"chai-as-promised": "^7.1.1",
"electron-builder": "^21.2.0",
"eslint": "^7.32.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.2.0",
"into-stream": "^3.1.0",
"mocha": "^3.4.2",
"mock-fs": "^4.4.1",
"rewire": "^2.5.2",
"rimraf": "^2.6.1",
"sinon": "^2.4.1"
}
}