-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
79 lines (79 loc) · 1.89 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
{
"name": "wib",
"version": "0.1.5",
"description": "Time tracking tool for the cli",
"keywords": [
"tracker",
"cli",
"time tracking"
],
"author": "Alexander Wink <[email protected]> (https://github.com/jinnoflife)",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/jinnoflife/wib.git"
},
"bugs": {
"url": "https://github.com/jinnoflife/wib/issues"
},
"homepage": "https://github.com/jinnoflife/wib#readme",
"publishConfig": {
"access": "public"
},
"main": "dist/Wib.ts",
"directories": {
"bin": "./bin",
"dist": "./dist",
"lib": "./src",
"test": "./tests"
},
"bin": {
"wib": "./bin/index.js"
},
"dependencies": {
"@types/node": "^13.13.21",
"commander": "^5.1.0"
},
"devDependencies": {
"@types/mocha": "^7.0.2",
"@typescript-eslint/eslint-plugin": "^2.30.0",
"@typescript-eslint/parser": "^2.30.0",
"chai": "^4.2.0",
"eslint": "^6.8.0",
"eslint-config-google": "^0.14.0",
"eslint-plugin-unused-imports": "^0.1.3",
"mocha": "^7.1.2",
"nyc": "^15.0.1",
"sinon": "^9.0.3",
"ts-node": "^8.9.1",
"typescript": "^3.9.7"
},
"scripts": {
"build": "./node_modules/.bin/tsc",
"tsc": "./node_modules/.bin/tsc",
"dev": "./node_modules/.bin/tsc --watch & node dist",
"lint": "./node_modules/.bin/eslint src tests --ext .js,.jsx,.ts,.tsx",
"fix": "./node_modules/.bin/eslint --fix src tests --ext .js,.jsx,.ts,.tsx",
"wib": "./dist/index.js",
"test": "TZ=UTC ./node_modules/.bin/mocha -r ts-node/register",
"coverage": "./node_modules/.bin/nyc npm test",
"link": "npm run build && npm link --force"
},
"nyc": {
"extension": [
".ts",
".tsx"
],
"include": [
"src/**/*"
],
"exclude": [
"**/*.d.ts"
],
"reporter": [
"html",
"text"
],
"all": true
}
}