-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.51 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.51 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
67
{
"name": "thefacecontroller",
"version": "1.0.0",
"description": "simple face recognation web app",
"main": "script.js",
"scripts": {
"start": "node server",
"test": "ava --verbose"
},
"repository": {
"type": "git",
"url": "git+https://github.com/approximata/theFaceController.git"
},
"keywords": [
"realeyes"
],
"author": "kbm",
"license": "MIT",
"bugs": {
"url": "https://github.com/approximata/theFaceController/issues"
},
"homepage": "https://github.com/approximata/theFaceController#readme",
"babel": {
"presets": [
"es2015"
]
},
"ava": {
"require": [
"./test/helper/setup-browser-env.js",
"babel-register"
],
"files": [
"test/*.js"
]
},
"dependencies": {
"aws-sdk": "^2.67.0",
"body-parser": "^1.17.2",
"express": "^4.15.3",
"fs-extra": "^3.0.1",
"multer": "^1.3.0",
"node-uuid": "^1.4.8",
"uuid": "^3.0.1",
"webrtc-adapter": "^4.0.0"
},
"engines": {
"node": "8.0"
},
"devDependencies": {
"eslint": "^4.0.0",
"eslint-config-standard": "^10.2.1",
"eslint-plugin-import": "^2.3.0",
"eslint-plugin-node": "^5.0.0",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-standard": "^3.0.1",
"browserify": "^14.4.0",
"babel-register": "^6.24.1",
"babel-cli": "^6.24.1",
"babel-polyfill": "^6.23.0",
"babel-preset-env": "^1.5.2",
"babel-preset-es2015": "^6.24.1",
"babelify": "^7.3.0",
"ava": "^0.19.1",
"browser-env": "^2.0.31"
}
}