-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.81 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
{
"name": "@neoskop/tikkle",
"version": "0.8.0",
"description": "The missing link between tickspot and toggl",
"repository": {
"type": "git",
"url": "https://github.com/neoskop/tikkle"
},
"bugs": {
"url": "https://github.com/neoskop/tikkle/issues"
},
"scripts": {
"#prebuild": "yarn test",
"build": "tsc",
"test": "jest --reporters jest-spec-reporter",
"test:watch": "jest --watch --reporters jest-spec-reporter",
"test:cov": "jest --coverage --reporters jest-spec-reporter --coverage-reporters html --coverage-reporters lcov",
"test:debug": "node --inspect-brk -r ts-node/register node_modules/.bin/jest --runInBand",
"coveralls": "cat coverage/lcov.info | coveralls",
"publish-next": "npm run build && npm publish --tag next",
"publish-latest-only": "npm run build && npm publish",
"publish-latest": "npm run publish-latest-only && npm dist-tag add @neoskop/tikkle@`jq '.version' package.json -r` next"
},
"author": "Mark Wecke <[email protected]>",
"license": "MIT",
"main": "dist/index.js",
"bin": {
"tikkle": "bin/tikkle.js"
},
"typings": "dist/index.d.ts",
"devDependencies": {
"@types/colors": "1.2.1",
"@types/fs-extra": "8.0.0",
"@types/jest": "24.0.17",
"@types/js-yaml": "3.12.1",
"@types/prompts": "2.0.1",
"@types/update-notifier": "2.5.0",
"@types/yargs": "13.0.2",
"coveralls": "3.0.6",
"jest": "24.8.0",
"jest-spec-reporter": "1.0.6",
"ts-jest": "24.0.2",
"ts-node": "8.3.0",
"typescript": "3.5.3"
},
"dependencies": {
"@types/ioredis": "4.0.13",
"axios": "0.19.0",
"colors": "1.3.3",
"fs-extra": "8.1.0",
"ioredis": "4.14.0",
"js-yaml": "3.13.1",
"prompts": "2.2.1",
"rxjs": "6.5.2",
"tslib": "1.10.0",
"update-notifier": "3.0.1",
"yargs": "13.3.0"
}
}