-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 965 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 965 Bytes
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
{
"name": "blinkdetector",
"version": "0.1.0",
"description": "OpenCV/C++ blink detector",
"main": "src/main.js",
"scripts": {
"build": "node-gyp rebuild; ./node_modules/.bin/electron-rebuild;",
"clean": "node-gyp clean",
"start": "npx babel src/app --out-dir app/; electron .;"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Naqu6/BlinkControl.git"
},
"author": "Ryan S. Ehrlich",
"license": "ISC",
"gypfile": true,
"bugs": {
"url": "https://github.com/Naqu6/BlinkControl/issues"
},
"homepage": "https://github.com/Naqu6/BlinkControl#readme",
"dependencies": {
"node-addon-api": "^1.6.3"
},
"devDependencies": {
"@babel/cli": "^7.4.4",
"@babel/core": "^7.4.5",
"@babel/preset-env": "^7.4.5",
"@babel/preset-react": "^7.0.0",
"electron": "^5.0.2",
"electron-rebuild": "^1.8.5",
"node-gyp": "^4.0.0",
"react": "^16.8.6",
"react-dom": "^16.8.6"
}
}