-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.15 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
{
"name": "@diy-iot-lock/app",
"version": "0.0.17",
"description": "Sample application layer for Azure Cognitive Services Face API.",
"author": {
"name": "Anton Boyko",
"url": "http://boykoant.pro"
},
"main": "lib/DIYIoTlockApp.js",
"types": "lib/DIYIoTlockApp.d.ts",
"files": [
"lib/**/*"
],
"scripts": {
"build": "tsc",
"lint": "tslint -p tsconfig.json",
"test": "mocha -r ts-node/register test/unit/**/*.test.ts",
"test-int": "mocha -r ts-node/register test/integration/**/*.test.ts"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"repository": {
"type": "git",
"url": "https://github.com/diy-iot-lock/app.git"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/diy-iot-lock/app/issues"
},
"homepage": "https://github.com/diy-iot-lock/app#readme",
"devDependencies": {
"@types/chai": "^4.2.7",
"@types/mocha": "^5.2.7",
"chai": "^4.2.0",
"mocha": "^6.2.2",
"nyc": "^15.0.0",
"ts-node": "^8.5.4",
"tslint": "^5.20.1",
"typescript": "^3.7.4"
},
"dependencies": {
"@azure/storage-blob": "^12.0.1",
"axios": "^0.19.0"
}
}