-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.28 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
{
"name": "face-lock",
"version": "1.0.0",
"description": "This program locks the system if user is afk",
"main": "src/index.js",
"scripts": {
"test": "neutrino test --use @neutrinojs/jest",
"start": "cross-env NODE_ENV=development electron .",
"build": "electron-packager . --out=build --overwrite --ignore=\\.vscode && npm run installer",
"lint": "neutrino lint --fix",
"installer": "node ./installer"
},
"author": "Atom Space",
"contributors": [
{
"name": "Mike Chumachenko",
"email": "pytechmike@gmail.com"
},
{
"name": "Constantine Genchevsky",
"email": "const.gen@gmail.com"
},
{
"name": "Artyom Maximov",
"email": "maximov.artyom007@gmail.com"
}
],
"license": "GPL-3.0",
"homepage": "https://github.com/atomspaceodua/face-lock/blob/master/README.md",
"keywords": [
"lock",
"locking",
"face",
"detection",
"detecting",
"security"
],
"private": true,
"dependencies": {
"lock-system": "^1.3.0",
"tracking": "1.1.3"
},
"devDependencies": {
"electron": "2.0.0",
"electron-packager": "12.1.0",
"neutrino": "8.2.3",
"@neutrinojs/jest": "8.2.3",
"cross-env": "5.1.5",
"@atomspace/eslint": "2.1.0",
"electron-builder": "20.14.7"
}
}