-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
82 lines (82 loc) · 2.76 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
{
"name": "@cubedelement.com/realty-investor-timeline",
"version": "4.1.0",
"description": "A way to determine if and when your expenses would be covered",
"main": "./dist/src/index.js",
"types": "./dist/src/index.d.ts",
"scripts": {
"clean": "rimraf ./dist",
"build": "tsc",
"eslint": "eslint . --ext .js,.jsx,.ts,.tsx --config .eslintrc.json",
"eslint:fix": "eslint . --ext .js,.jsx,.ts,.tsx --config .eslintrc.json --fix",
"prebuild": "npm run clean",
"pack": "npm pack",
"pretest": "rimraf ./.jestcache",
"prepare": "husky install",
"test": "jest",
"test:cov": "jest --coverage",
"test:cov:badge": "jest --coverage --ci --runInBand",
"test:bench": "jest --config ./jest.benchmark.config.ts --ci --runInBand ",
"test:int": "jest --config ./jest.integation.config.ts",
"test:ci": "jest --config ./jest.ci.config.ts --ci --runInBand",
"test:ci:bench": "jest --config ./jest.ci.benchmark.config.ts --ci --runInBand",
"test:ci:int": "jest --config ./jest.ci.integation.config.ts --ci --runInBand",
"test:gen-badges": "make-coverage-badge --output-path \"./badges/badge.svg\"",
"test:cov-and-badge": "npm run test:cov:badge && npm run test:gen-badges",
"test:related": "jest --findRelatedTests"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kvernon/realty-investor-timeline.git"
},
"keywords": [
"realty",
"typescript",
"investing"
],
"author": "Kelly Vernon",
"license": "ISC",
"bugs": {
"url": "https://github.com/kvernon/realty-investor-timeline/issues"
},
"homepage": "https://github.com/kvernon/realty-investor-timeline#readme",
"devDependencies": {
"@commitlint/cli": "^17.0.3",
"@commitlint/config-conventional": "^17.0.3",
"@semantic-release/changelog": "^6.0.1",
"@semantic-release/git": "^10.0.1",
"@types/benchmark": "^2.1.1",
"@types/chance": "^1.1.3",
"@types/jest": "^29.5.0",
"@types/lodash.clonedeep": "^4.5.7",
"@typescript-eslint/eslint-plugin": "^5.30.7",
"@typescript-eslint/parser": "^5.30.7",
"benchmark": "^2.1.4",
"eslint": "^8.20.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-jest": "^27.2.1",
"husky": "^8.0.1",
"jest": "^29.5.0",
"jest-junit": "^15.0.0",
"lint-staged": "^13.0.3",
"make-coverage-badge": "^1.2.0",
"microtime": "^3.1.0",
"prettier": "^2.7.1",
"rimraf": "^4.4.1",
"semantic-release": "^21.0.0",
"semantic-release-cli": "^5.4.4",
"ts-jest": "^29.0.5",
"ts-node": "^10.9.1",
"typescript": "~4.9.5"
},
"dependencies": {
"chance": "^1.1.8",
"date-fns": "^2.29.1",
"itiriri": "^2.0.1",
"lodash.clonedeep": "^4.5.0",
"reflect-metadata": "^0.1.13"
},
"publishConfig": {
"access": "public"
}
}