-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.83 KB
/
Copy pathpackage.json
File metadata and controls
66 lines (66 loc) · 1.83 KB
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
{
"name": "MMM-Facial-Recognition",
"version": "1.0.1",
"description": "A MagicMirror module to show NJ Transit bus arrival times.",
"engines": {
"node": ">=8.0.0",
"npm": ">= 5.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/dimitrystd/MMM-Facial-Recognition.git"
},
"keywords": [
"mmm",
"magic mirror",
"smart mirror",
"module"
],
"author": {
"name": "Dmitry Studynskyi",
"email": "dimitrystd@gmail.com"
},
"contributors": "https://github.com/dimitrystd/MMM-Facial-Recognition/graphs/contributors",
"license": "GPL-3.0-or-later",
"bugs": {
"url": "https://github.com/galaktor/MMM-Facial-Recognition/issues"
},
"homepage": "http://github.com/dimitrystd/MMM-Facial-Recognition",
"scripts": {
"start": "node %NODE_DEBUG_OPTION% MMM-Facial-Recognition.js",
"pretest": "eslint .",
"test": "nyc mocha --reporter mocha-junit-reporter --recursive test/pre_deploy/*",
"test_pre_deploy": "mocha --recursive test/pre_deploy/*",
"test_post_deploy": "mocha --timeout 30000 --recursive test/post_deploy/*",
"test_all": "mocha --timeout 30000 --reporter mocha-junit-reporter --recursive test/*"
},
"dependencies": {
"python-shell": "^1.0.6"
},
"devDependencies": {
"babel-eslint": "^10.0.1",
"chai": "^4.2.0",
"eslint": "^5.6.1",
"eslint-config-airbnb": "^17.1.0",
"eslint-plugin-flowtype": "^3.2.0",
"eslint-plugin-fp": "^2.3.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.2",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-react": "^7.11.1",
"fs": "0.0.1-security",
"mocha": "^5.2.0",
"mocha-junit-reporter": "^1.18.0",
"nyc": "^13.0.1",
"sinon": "^7.1.1"
},
"nyc": {
"reporter": [
"lcov",
"clover"
],
"exclude": [
"test/**"
]
}
}