-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
81 lines (81 loc) · 2.11 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "xcomfort-shc-api",
"version": "0.0.0-development",
"description": "node.js api for Xcomfort smart home controller",
"main": "dist/Xcomfort.js",
"scripts": {
"commit": "git-cz",
"precommit": "npm test",
"test": "jest --coverage",
"test:watch": "jest --watch",
"report-coverage": "codecov",
"docs": "npm run docs:readme && npm run docs:usage",
"docs:readme": "jsdoc2md --template docTemplates/api.hbs --partial docTemplates/sig-name.hbs --partial docTemplates/sig-link.hbs --no-gfm --separators lib/*.js > API.md",
"docs:usage": "docco --layout parallel example/index.js",
"prebuild": "rimraf dist",
"build": "npm run build:lib && npm run build:scripts",
"build:lib": "babel --out-dir dist --ignore *.test.js,__mocks__ lib",
"build:scripts": "babel --out-dir bin --ignore *.test.js scripts",
"semantic-release": "semantic-release pre && npm publish && semantic-release post"
},
"repository": {
"type": "git",
"url": "https://github.com/oanylund/xcomfort-shc-api"
},
"keywords": [
"xcomfort",
"shc"
],
"files": [
"dist",
"bin",
"README.md"
],
"author": "Ole-Andreas Nylund",
"license": "MIT",
"dependencies": {
"bluebird": "^3.5.0",
"request": "^2.79.0"
},
"devDependencies": {
"babel-cli": "6.24.0",
"babel-jest": "19.0.0",
"babel-preset-es2015": "6.24.0",
"babel-preset-stage-2": "6.22.0",
"codecov": "2.1.0",
"commitizen": "2.9.6",
"cz-conventional-changelog": "2.0.0",
"docco": "0.7.0",
"husky": "0.13.2",
"jest": "19.0.2",
"jsdoc-to-markdown": "3.0.0",
"nock": "9.0.9",
"regenerator-runtime": "0.10.3",
"rimraf": "2.6.1",
"semantic-release": "^6.3.2"
},
"config": {
"commitizen": {
"path": "node_modules/cz-conventional-changelog"
}
},
"jest": {
"coverageThreshold": {
"global": {
"branches": 20,
"functions": 20,
"lines": 20,
"statements": 20
}
}
},
"babel": {
"presets": [
"es2015",
"stage-2"
]
},
"bin": {
"xcomfort-exportSetup": "bin/exportSetup.js"
}
}