-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
41 lines (41 loc) · 977 Bytes
/
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
{
"name": "hour-parser",
"version": "2.1.0",
"description": "Parse user-provided timestamp input and get nice output",
"main": "index.js",
"types": "index.d.ts",
"contributors": [
{
"name": "Evan Walsh",
"email": "evan@getharvest.com"
},
{
"name": "Pez Cuckow",
"email": "pez@getharvest.com"
}
],
"license": "MIT",
"scripts": {
"build": "tsc -p ./tsconfig.json",
"format": "prettier --check .",
"format:write": "prettier --write .",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"test": "jest --coverage"
},
"devDependencies": {
"@types/jest": "^27.4.1",
"@typescript-eslint/eslint-plugin": "^5.15.0",
"@typescript-eslint/parser": "^5.15.0",
"eslint": "^8.11.0",
"eslint-config-prettier": "^8.5.0",
"jest": "^27.5.1",
"prettier": "^2.5.1",
"ts-jest": "^27.1.3",
"typescript": "^4.6.2"
},
"volta": {
"node": "16.14.0",
"npm": "8.5.4"
}
}