-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
53 lines (53 loc) · 1.4 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
{
"name": "@smartthings/firestore-context-store",
"version": "3.0.0",
"description": "Stores SmartApp configuration and auth tokens for use in app-initiated calls",
"author": "Samsung Electronics Co., LTD.",
"contributors": [
"Eric Rodewald <[email protected]>"
],
"exports": {
"import": "./index.js",
"require": "./index.cjs"
},
"type": "module",
"scripts": {
"test": "xo && nyc mocha test/**/*.js"
},
"publishConfig": {
"access": "public"
},
"repository": "github:SmartThingsCommunity/firestore-context-store-nodejs",
"bugs": "https://github.com/SmartThingsCommunity/firestore-context-store-nodejs/issues",
"homepage": "https://github.com/SmartThingsCommunity/firestore-context-store-nodejs#readme",
"dependencies": {
"firebase-admin": "^12.0.0"
},
"devDependencies": {
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"chai": "~4.2.0",
"conventional-changelog-conventionalcommits": "^4.6.3",
"mocha": "^10.2.0",
"nyc": "~14.0.0",
"semantic-git-commit-cli": "^1.0.2",
"semantic-release": "^23.0.0",
"xo": "^0.56.0"
},
"engines": {
"node": ">=20.8.1"
},
"keywords": [
"firestore-database",
"smartthings-smartapp",
"smartapp"
],
"license": "Apache-2.0",
"xo": {
"space": 2,
"semicolon": false,
"rules": {
"object-curly-spacing": "off"
}
}
}