-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.01 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 2.01 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "tca",
"version": "0.0.1",
"description": "TypeScript Composable Architecture",
"main": "build/main/index.js",
"typings": "build/main/index.d.ts",
"scripts": {
"build": "tsc -p tsconfig.json",
"fix": "run-s fix:*",
"fix:prettier": "prettier --config=.prettierrc \"src/**/*.ts\" --write",
"fix:lint": "eslint src --ext .ts --fix",
"test": "run-s build test:*",
"test:lint": "eslint src --ext .ts",
"test:prettier": "prettier --config=.prettierrc \"src/**/*.ts\" --list-different",
"test:spelling": "cspell \"{README.md,.github/*.md,src/**/*.ts}\"",
"test:unit": "nyc --silent ava",
"prepare": "run-s build"
},
"keywords": [
"TCA",
"Composable",
"Achitecture",
"State",
"Management"
],
"author": "technicated",
"license": "MIT",
"dependencies": {
"@base2/pretty-print-object": "^1.0.2",
"@technicated/ts-enums": "0.9.5",
"deep-object-diff": "^1.1.9",
"hash-it": "^6.0.0",
"immer": "^10.0.3",
"lodash": "^4.17.21",
"rxjs": "^7.0.0",
"uuid": "^9.0.1"
},
"devDependencies": {
"@ava/typescript": "^4.1.0",
"@istanbuljs/nyc-config-typescript": "^1.0.2",
"@types/lodash": "^4.14.202",
"@types/uuid": "^9.0.7",
"@typescript-eslint/eslint-plugin": "^6.12.0",
"ava": "^5.3.1",
"cspell": "^8.0.0",
"eslint": "^8.54.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-import": "^2.29.0",
"npm-run-all": "^4.1.5",
"nyc": "^15.1.0",
"prettier": "^3.1.0",
"typescript": "^4.9.0"
},
"ava": {
"failFast": true,
"timeout": "60s",
"typescript": {
"rewritePaths": {
"src/": "build/main/"
},
"compile": false
},
"files": [
"!build/module/**",
"!src/lib/schedulers/test-scheduler.ts",
"!src/lib/test-store.ts"
]
},
"prettier": {
"singleQuote": true
},
"nyc": {
"extends": "@istanbuljs/nyc-config-typescript",
"exclude": [
"**/*.spec.js"
]
}
}