-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
110 lines (110 loc) · 3.61 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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
{
"name": "ngxs-effects",
"version": "3.1.3",
"repository": {
"type": "git",
"url": "git+https://github.com/vladborsh/ngxs-effects.git"
},
"keywords": [
"redux",
"state",
"ngxs",
"angular",
"ng",
"effects",
"ngxs-effects",
"ngxs-plugin",
"ngxs-ngrx-effects"
],
"scripts": {
"ng": "ng",
"start": "ng serve demo-app --port 3333",
"lint": "npm run ngxs-effects:lint",
"test": "npm run ngxs-effects:test:watch",
"build": "npm run ngxs-effects:build",
"commit": "git-cz",
"coveralls": "cat coverage/ngxs-effects/lcov.info | coveralls",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s",
"demo-app:build": "ng build demo-app",
"demo-app:test": "ng test demo-app",
"demo-app:lint": "npx eslint -c .eslintrc.js 'projects/demo-app/**/*.ts' --fix",
"ngxs-effects:build": "ng build ngxs-effects --prod",
"ngxs-effects:test": "ng test ngxs-effects --configuration=ci",
"ngxs-effects:lint": "npx eslint -c .eslintrc.js 'projects/ngxs-effects/**/*.ts' --fix",
"ngxs-effects:test:watch": "ng test ngxs-effects",
"preversion": "npm run lint && npm run ngxs-effects:test && npm run build",
"version": "standard-version",
"release:patch": "npm run version -- --release-as patch",
"release:minor": "npm run version -- --release-as minor",
"release:major": "npm run version -- --release-as major",
"publish": "npm run build && npm publish ./dist/ngxs-effects"
},
"dependencies": {
"@angular/animations": "~9.1.9",
"@angular/common": "~9.1.9",
"@angular/compiler": "~9.1.9",
"@angular/core": "~9.1.9",
"@angular/forms": "~9.1.9",
"@angular/platform-browser": "~9.1.9",
"@angular/platform-browser-dynamic": "~9.1.9",
"@angular/router": "~9.1.9",
"@ngxs/logger-plugin": "~3.6.2-dev.master-14ab2bf",
"@ngxs/store": "~3.6.2-dev.master-14ab2bf",
"reflect-metadata": "~0.1.13",
"rxjs": "~6.5.5",
"zone.js": "~0.10.2"
},
"devDependencies": {
"@angular-devkit/build-angular": "~0.901.7",
"@angular-devkit/build-ng-packagr": "~0.901.7",
"@angular/cli": "~9.1.7",
"@angular/compiler-cli": "~9.1.9",
"@angular/language-service": "~9.1.9",
"@types/jasmine": "~3.3.8",
"@types/jasminewd2": "~2.0.3",
"@types/node": "^12.11.1",
"@typescript-eslint/eslint-plugin": "^2.28.0",
"@typescript-eslint/eslint-plugin-tslint": "^2.28.0",
"@typescript-eslint/parser": "^2.28.0",
"codelyzer": "^5.1.2",
"commitizen": "^4.0.4",
"conventional-changelog-cli": "^2.0.31",
"coveralls": "^3.0.13",
"cz-conventional-changelog": "^3.1.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.1",
"eslint-plugin-prettier": "^3.1.3",
"husky": "^4.2.5",
"jasmine-core": "~3.4.0",
"jasmine-spec-reporter": "~4.2.1",
"karma": "~4.1.0",
"karma-chrome-launcher": "~2.2.0",
"karma-coverage-istanbul-reporter": "~2.0.1",
"karma-jasmine": "~2.0.1",
"karma-jasmine-html-reporter": "~1.4.0",
"karma-mocha-reporter": "^2.2.5",
"lint-staged": "^10.1.7",
"ng-packagr": "^10.1.1",
"protractor": "~5.4.0",
"standard-version": "^8.0.1",
"ts-node": "~7.0.0",
"tslib": "^1.13.0",
"tslint": "^5.18.0",
"typescript": "~3.8.3"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged --config ./lint-staged.config.js"
}
},
"standard-version": {
"scripts": {
"postbump": "node scripts/sync-version.js && git add **/package.json && git commit -m 'chore: sync version'"
}
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}