This repository was archived by the owner on Aug 26, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.73 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.73 KB
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
{
"name": "@timechimp/timechimp-typescript-helpers",
"repository": {
"type": "git",
"url": "https://github.com/timechimp/timechimp-typescript-helpers.git"
},
"version": "3.0.6",
"license": "MIT",
"author": "TimeChimp",
"main": "dist/cjs/index.js",
"types": "dist/cjs/index.d.ts",
"module": "dist/esm/index.js",
"sideEffects": false,
"files": [
"dist",
"src"
],
"scripts": {
"start": "tsc --watch",
"clean": "rimraf dist",
"prebuild": "npm run clean",
"build:cjs": "tsc --module commonjs --outDir dist/cjs",
"build:esm": "tsc --module esnext --outDir dist/esm",
"build:copy-files": "node scripts/copyFiles.mjs",
"build": "npm run build:cjs && npm run build:esm && npm run build:copy-files",
"test": "jest --passWithNoTests",
"lint": "npx eslint --ext .ts,.tsx src/",
"lint:fix": "npm run lint -- --fix",
"release": "npm run build && np --no-2fa",
"prepare": "husky install"
},
"prettier": {
"printWidth": 80,
"semi": true,
"singleQuote": true,
"trailingComma": "es5"
},
"devDependencies": {
"@types/accounting": "^0.4.1",
"@types/jest": "^26.0.20",
"@typescript-eslint/eslint-plugin": "^5.59.1",
"@typescript-eslint/parser": "^5.59.1",
"eslint": "^8.39.0",
"eslint-config-prettier": "^8.8.0",
"fs-extra": "^11.1.1",
"husky": "^8.0.3",
"jest": "^29.5.0",
"lint-staged": "^13.2.2",
"np": "^7.5.0",
"prettier": "2.8.8",
"rimraf": "^5.0.0",
"ts-jest": "^29.1.0",
"tslib": "^2.1.0",
"typescript": "^4.1.3"
},
"dependencies": {
"accounting": "^0.4.1",
"date-fns": "^2.29.3"
},
"lint-staged": {
"*.{ts,tsx}": "eslint --cache --fix",
"*.{ts,tsx,js,css,md}": "prettier --write"
}
}