-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
70 lines (70 loc) · 1.58 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
{
"name": "withings-ts",
"description": "withings API library",
"main": "dist/index.js",
"version": "0.0.6",
"files": [
"dist"
],
"scripts": {
"build": "tsc",
"prepublishOnly": "npm run build",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/yasuharu519/withings-ts.git"
},
"keywords": [
"withings"
],
"author": "Yasuharu Sawada",
"license": "MIT",
"bugs": {
"url": "https://github.com/yasuharu519/withings-ts/issues"
},
"homepage": "https://github.com/yasuharu519/withings-ts#readme",
"devDependencies": {
"@commitlint/cli": "12.1.1",
"@commitlint/config-conventional": "12.1.1",
"@semantic-release/git": "9.0.0",
"@semantic-release/npm": "7.1.3",
"@types/node": "14.14.44",
"husky": "6.0.0",
"semantic-release": "17.4.2",
"typescript": "4.2.4"
},
"dependencies": {
"axios": "^0.21.1"
},
"release": {
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/github",
"@semantic-release/npm",
[
"@semantic-release/git",
{
"assets": [
"package.json"
],
"message": "chore(release): ${nextRelease.version} [skip ci]\n\n${nextRelease.notes}"
}
]
],
"branches": [
"master"
]
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
}
}