-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
50 lines (50 loc) · 1.3 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
{
"name": "mite-api",
"description": "Simple Node.js module to access the mite-api.",
"version": "0.1.1",
"homepage": "https://github.com/marcel-devdude/mite-api",
"license": "MIT",
"keywords": [
"api",
"mite",
"mite.de",
"time-tracking",
"timetracking"
],
"author": {
"name": "Marcel Meyer",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "git://github.com/marcel-devdude/mite-api.git"
},
"bugs": {
"url": "https://github.com/marcel-devdude/mite-api/issues"
},
"main": "index",
"engines": {
"node": ">= 8.17.0"
},
"scripts": {
"changelog:preview": "conventional-changelog --output-unreleased -p angular",
"changelog": "conventional-changelog -s -i CHANGELOG.md -p angular -r 0",
"lint:fix": "npm run lint -- --fix",
"lint": "eslint ./",
"preversion": "npm test && npm lint",
"tdd": "npm test -- --watch",
"test": "mocha",
"version:recommend": "conventional-recommended-bump --preset angular",
"version": "npm run changelog && git add CHANGELOG.md"
},
"dependencies": {
"request": "^2.88.2"
},
"devDependencies": {
"conventional-changelog-cli": "^2.0.34",
"conventional-recommended-bump": "^6.0.9",
"eslint": "^6.8.0",
"mocha": "^5.0.1",
"should": "^13.2.1"
}
}