-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
87 lines (87 loc) · 2.7 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
83
84
85
86
87
{
"name": "angular-reactive-state",
"description": "Reactive state management library for Angular",
"displayName": "Angular Reactive State Management",
"version": "2.0.0",
"publisher": "PKief",
"scripts": {
"ng": "ng",
"prettier": "prettier --write \"**/*.{js,json,css,scss,less,md,ts,html,component.html}\"",
"start": "ng serve",
"build": "npm run build:playground && npm run build:lib",
"build:playground": "ng build playground",
"build:lib": "ng build state",
"prepare:lib": "node prepare-lib-files.js",
"watch": "ng build --watch --configuration development",
"test": "ng test",
"lint": "ng lint",
"changelog": "changelog-machine --config changelog.config.json",
"version": "npm run changelog && git add CHANGELOG.md"
},
"author": {
"name": "Philipp Kief",
"email": "philipp.kief@gmx.de",
"url": "https://pkief.github.io"
},
"funding": "https://github.com/sponsors/PKief",
"sponsor": {
"url": "https://github.com/sponsors/PKief"
},
"keywords": [
"Angular",
"State-Management",
"Store",
"Reactive"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/PKief/angular-reactive-state/issues"
},
"homepage": "https://github.com/PKief/angular-reactive-state/blob/main/README.md",
"repository": {
"type": "git",
"url": "git+https://github.com/PKief/angular-reactive-state.git"
},
"files": [
"dist/state/*"
],
"dependencies": {
"@angular/animations": "^17.1.3",
"@angular/common": "^17.1.3",
"@angular/compiler": "^17.1.3",
"@angular/core": "^17.1.3",
"@angular/forms": "^17.1.3",
"@angular/platform-browser": "^17.1.3",
"@angular/platform-browser-dynamic": "^17.1.3",
"@angular/router": "^17.1.3",
"lodash-es": "^4.17.21",
"rxjs": "~7.8.1",
"tslib": "^2.3.0",
"zone.js": "~0.14.3"
},
"devDependencies": {
"@angular-builders/jest": "17.0.0",
"@angular-devkit/build-angular": "^17.1.3",
"@angular-eslint/builder": "17.2.1",
"@angular-eslint/eslint-plugin": "17.2.1",
"@angular-eslint/eslint-plugin-template": "17.2.1",
"@angular-eslint/schematics": "17.2.1",
"@angular-eslint/template-parser": "17.2.1",
"@angular/cli": "~17.1.3",
"@angular/compiler-cli": "^17.1.3",
"@schuchard/prettier": "^5.1.0",
"@types/jest": "^29.5.12",
"@types/lodash-es": "^4.17.12",
"@typescript-eslint/eslint-plugin": "6.21.0",
"@typescript-eslint/parser": "6.21.0",
"changelog-machine": "^1.0.2",
"eslint": "^8.56.0",
"jest": "29.7.0",
"jest-preset-angular": "^14.0.2",
"ng-packagr": "^17.1.2",
"prettier": "latest",
"ts-jest": "^29.1.2",
"tslint-config-prettier": "latest",
"typescript": "~5.3.3"
}
}