-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
53 lines (53 loc) · 1.52 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
{
"name": "@tylertech/forge-core",
"version": "3.1.0",
"description": "A library of core web utilities that support Tyler Forge™ based libraries.",
"author": "Tyler Technologies, Inc.",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/tyler-technologies-oss/forge-core.git"
},
"main": "./dist/index.js",
"module": "./dist/index.js",
"typings": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"prepare": "husky",
"build": "npm run lint && rimraf ./dist && tsc",
"lint": "eslint ./src",
"test": "wtr --coverage --watch",
"ci:test": "wtr",
"serve:coverage": "http-server -c 1 -o -p 9875 .coverage/lcov-report",
"release": "auto shipit"
},
"dependencies": {
"tslib": "^2.6.3"
},
"devDependencies": {
"@auto-it/conventional-commits": "^11.1.6",
"@auto-it/first-time-contributor": "^11.1.6",
"@auto-it/npm": "^11.1.6",
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"@esm-bundle/chai": "^4.3.4-fix.0",
"@tylertech-eslint/eslint-plugin": "^1.0.12",
"@types/mocha": "^10.0.6",
"@types/node": "^20.14.2",
"@types/sinon": "^17.0.3",
"@web/dev-server-esbuild": "^1.0.2",
"@web/test-runner": "^0.18.2",
"auto": "^11.1.6",
"commitlint": "^19.3.0",
"http-server": "^14.1.1",
"husky": "^9.0.11",
"rimraf": "^5.0.7",
"sinon": "^18.0.0",
"typescript": "~5.4.5"
},
"overrides": {
"@typescript-eslint/typescript-estree": "^7.12.0"
}
}