forked from timgabets/electron-atm
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
92 lines (92 loc) · 2.49 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "electron-atm",
"productName": "Electron ATM",
"version": "1.4.3",
"description": "A simple APTRA Advance NDC ATM emulator",
"main": "main.js",
"scripts": {
"start": "electron main.js",
"test": "eslint tests/** src/services/** src/controllers/** && nyc --reporter=html --reporter=lcov ava",
"pack": "electron-builder --dir",
"dist": "electron-builder",
"win32": "electron-builder --win",
"linux": "electron-builder --linux"
},
"repository": "https://github.com/timgabets/electron-atm",
"keywords": [
"Electron",
"ATM"
],
"ava": {
"files": [
"tests/**/*.js"
],
"source": [
"**/*.{js}"
],
"concurrency": 5,
"failFast": true,
"failWithoutAssertions": false,
"powerAssert": false,
"require": [
"babel-register"
],
"babel": "inherit"
},
"babel": {
"presets": [
"env"
]
},
"author": {
"name": "Tim Gabets",
"email": "[email protected]",
"url": "http://gabets.ru/"
},
"license": "LGPL-2.1",
"devDependencies": {
"ava": "^0.24.0",
"electron": "~5.0.13",
"electron-builder": "^19.47.1",
"eslint": "^4.12.0",
"eslint-plugin-import": "^2.8.0",
"jsdom": "^11.5.1",
"nyc": "^11.3.0",
"sinon": "^4.1.2"
},
"dependencies": {
"atm-cursor": "^0.1.1",
"atm-fits": "^0.2.0",
"atm-hardware": "^0.2.3",
"atm-logging": "git://github.com/jrodriguesd/atm-logging",
"atm-opcode-buffer": "git://github.com/jrodriguesd/atm-opcode-buffer",
"atm-screens": "git://github.com/jrodriguesd/atm-screens",
"atm-screentext": "git://github.com/jrodriguesd/atm-screentext",
"atm-state-levels": "^1.0.6",
"atm-states": "git://github.com/jrodriguesd/atm-states",
"atm-cassettes": "git://github.com/jrodriguesd/atm-cassettes",
"atm-timestamp": "^1.1.0",
"atm-trace": "git://github.com/jrodriguesd/atm-trace",
"babel-preset-env": "^1.6.1",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-register": "^6.26.0",
"bootstrap": "^3.3.7",
"electron-settings": "^3.1.1",
"fs": "0.0.1-security",
"git-dependency": "^0.1.0",
"jquery": "^3.2.1",
"jquery-ui-dist": "^1.11.4",
"jquery-validation": "^1.17.0",
"mousetrap": "^1.6.1",
"ndc-parser": "git://github.com/jrodriguesd/ndc-parser",
"node-cardcrypto": "^1.0.2",
"pinblock": "^0.2.0",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"vis": "^4.20.1"
},
"build": {
"appId": "com.electron-atm"
}
}