-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
115 lines (115 loc) · 2.91 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
{
"name": "command-line-time-tracker",
"version": "2.0.0-0",
"description": "Time Tracker",
"main": "./src/commands/tt.js",
"scripts": {
"lint": "eslint src --ext .js",
"test": "jest",
"test:watch": "jest --watch",
"test:verbose": "jest --verbose",
"test:coverage": "jest --coverage",
"coveralls": "cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js",
"preversion": "npm run lint && npm test",
"version": "git add src",
"postversion": "git push && git push --tags",
"tt": "node -r babel-register src/commands/tt.js",
"tt-debug": "DEBUG=tt:* node -r babel-register src/commands/tt.js",
"compile": "babel -d dist/ src/",
"prepare": "npm run compile",
"watch": "babel --watch -d dist/ src/"
},
"author": {
"name": "Jonathan Keller",
"email": "[email protected]"
},
"license": "GPL-3.0+",
"repository": {
"type": "git",
"url": "https://github.com/kellerj/command-line-time-tracker.git"
},
"bin": {
"tt": "./dist/commands/tt.js"
},
"dependencies": {
"chalk": "^2.3.0",
"commander": "^2.12.2",
"d3-scale-chromatic": "^1.1.1",
"date-fns": "^1.29.0",
"debug": "^3.1.0",
"easy-table": "1.1.x",
"fuzzy": "^0.1.3",
"inquirer": "^4.0.1",
"inquirer-autocomplete-prompt": "^0.12.0",
"moment": "2.24.x",
"mongodb": "^2.2.31",
"parse-loose-time": "^1.0.1",
"rx": "4.1.x",
"sprintf-js": "1.1.x",
"stream-buffers": "^3.0.1",
"supports-color": "^5.0.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-jest": "^22.4.3",
"babel-preset-env": "^1.6.1",
"babel-register": "^6.26.0",
"babel-watch": "^2.0.7",
"chai": "^4.1.2",
"chai-as-promised": "^7.1.1",
"chai-shallow-deep-equal": "^1.4.6",
"coveralls": "^3.0.0",
"cross-env": "^5.1.3",
"eslint": "^4.12.1",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-plugin-import": "^2.8.0",
"istanbul-api": "1.2.2",
"istanbul-reports": "1.1.4",
"jest": "^22.4.3",
"jest-runner-eslint": "^0.5.0",
"regenerator-runtime": "^0.11.1",
"sinon": "^4.1.2"
},
"coverageThreshold-temp": {
"global": {
"lines": 90,
"statements": 90,
"functions": 90,
"branches": 75
}
},
"jest": {
"roots": [
"<rootDir>/src",
"<rootDir>/test"
],
"projects": [
{
"displayName": "test"
},
{
"displayName": "lint",
"runner": "jest-runner-eslint",
"testMatch": [
"<rootDir>/src/**/*.js"
]
}
],
"verbose": false,
"collectCoverage": false,
"testEnvironment": "node",
"coveragePathIgnorePatterns": [
"<rootDir>/src/commands",
"<rootDir>/coverage",
"<rootDir>/dist",
"<rootDir>/node_modules"
],
"coverageReporters": [
"lcov",
"text-summary",
"text",
"html"
]
}
}