-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
54 lines (54 loc) · 1.52 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
53
54
{
"name": "nest-cam",
"version": "1.0.6",
"description": "Access the Nest API through a Reactive Node.JS Interface",
"main": "build/main.js",
"scripts": {
"test": "mocha ./test/**.test.js --timeout 5000 --exit",
"start": "backpack",
"coverage": "CI=true NODE_ENV=test nyc --reporter=lcovonly --reporter=text ./node_modules/.bin/mocha './test/**.test.js' --timeout 10000 --exit",
"tag": "PACKAGE_VERSION=$(cat package.json | grep version | head -1 | awk -F: '{ print $2 }' | sed 's/[\",]//g' | tr -d '[[:space:]]') && git tag $PACKAGE_VERSION && git push --tags",
"build": "backpack build && cp ./build/main.js ./index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cbartram/Nest.git"
},
"dependencies": {
"axios": "^0.21.1",
"backpack-core": "^0.8.4",
"chalk": "^4.0.0",
"dotenv": "^8.2.0",
"moment": "^2.24.0",
"nock": "^12.0.3",
"request": "^2.88.2",
"request-promise-native": "^1.0.9",
"rxjs": "^6.5.5"
},
"devDependencies": {
"chai": "^4.2.0",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.1.0",
"eslint-plugin-import": "^2.20.2",
"mocha": "^10.2.0",
"nyc": "^15.0.1"
},
"keywords": [
"nest",
"javascript",
"node.js",
"rest",
"api",
"reactive",
"observable",
"camera",
"image",
"event"
],
"author": "cbartram",
"license": "Apache",
"bugs": {
"url": "https://github.com/cbartram/Nest/issues"
},
"homepage": "https://github.com/cbartram/Nest#readme"
}