-
Notifications
You must be signed in to change notification settings - Fork 37
/
package.json
42 lines (42 loc) · 1.06 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
{
"name": "st-schema",
"version": "1.5.1",
"description": "SmartThings Schema for C2C integration",
"main": "index.js",
"directories": {
"lib": "lib",
"test": "test"
},
"scripts": {
"coverage": "nyc --all --check-coverage --reporter=lcov --reporter=text --reporter=text-summary npm test",
"lint": "eslint . --max-warnings 0",
"lint:fix": "eslint . --fix --max-warnings 0 --cache",
"test": "mocha"
},
"keywords": [
"smartthings",
"st-schema",
"smartthings-schema"
],
"author": "SmartThings",
"license": "Apache-2.0",
"dependencies": {
"camelcase": "6.2.0",
"node-fetch": "^2.6.7"
},
"devDependencies": {
"chai": "4.2.0",
"mocha": "5.2.0",
"nyc": "14.1.1",
"rewire": "4.0.1",
"sinon": "^7.3.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/SmartThingsCommunity/st-schema-nodejs.git"
},
"bugs": {
"url": "https://github.com/SmartThingsCommunity/st-schema-nodejs/issues"
},
"homepage": "https://github.com/SmartThingsCommunity/st-schema-nodejs#readme"
}