generated from teunmooij/typescript-module-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.6 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
{
"name": "systemic-converse",
"version": "1.0.0",
"description": "A Systemic component that lets components converse in the direction opposite of their dependency",
"main": "dist/index.js",
"scripts": {
"build": "rimraf dist && tsc",
"lint": "eslint src/**/*.ts",
"lint:fix": "eslint src/**/*.ts --quiet --fix",
"test": "jest -c jest.config.ts",
"test:coverage": "jest -c jest.config.ts --verbose --collectCoverage",
"typecheck": "tsc --noEmit",
"prepare": "husky install"
},
"devDependencies": {
"@types/jest": "^29.2.4",
"@typescript-eslint/eslint-plugin": "^5.30.3",
"@typescript-eslint/parser": "^5.30.3",
"eslint": "^8.20.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jest": "^26.6.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-sort-class-members": "^1.14.1",
"husky": "^8.0.1",
"jest": "^29.3.1",
"lint-staged": "^13.0.3",
"prettier": "^2.7.1",
"rimraf": "^3.0.2",
"systemic": "^4.1.2",
"ts-jest": "^29.0.5",
"ts-node": "^10.9.1",
"typescript": "^4.9.3"
},
"lint-staged": {
"**/*.{js,ts}": "eslint --cache --fix",
"**/*.{js,ts,md}": "prettier --write"
},
"repository": {
"type": "git",
"url": "git+https://github.com/infinitaslearning/systemic-converse.git"
},
"keywords": [],
"author": "Teun Mooij",
"license": "MIT",
"bugs": {
"url": "https://github.com/infinitaslearning/systemic-converse/issues"
},
"homepage": "https://github.com/infinitaslearning/systemic-converse#readme"
}