-
Notifications
You must be signed in to change notification settings - Fork 52
Expand file tree
/
Copy pathpackage.json
More file actions
102 lines (102 loc) · 3.53 KB
/
package.json
File metadata and controls
102 lines (102 loc) · 3.53 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
{
"name": "ngx-feature-toggle-demo",
"description": "Your module to handle with feature toggles in Angular applications easier.",
"author": "Will Mendes <willmendesneto@gmail.com>",
"version": "13.0.0",
"scripts": {
"ng": "ng",
"start": "ng serve",
"build": "ng build",
"test": "ng test ngx-feature-toggle-demo --watch=false --no-progress --code-coverage && ng test ngx-feature-toggle --watch=false --no-progress --code-coverage",
"tdd": "ng test",
"lint": "ng lint",
"pree2e": "webdriver-manager update",
"e2e": "ng e2e",
"bundlesize": "bundlesize --config .bundlesize.config.json",
"build:pkg": "ng build ngx-feature-toggle --configuration production",
"update-library-version": "node ./scripts/build.js && cp -f *.md dist/ngx-feature-toggle",
"postversion": "git push && git push --tags",
"prepublish": "npm run build:pkg && npm run build && npm run update-library-version",
"version": "version-changelog CHANGELOG.md && changelog-verify CHANGELOG.md && npm run build:pkg && npm run update-library-version && git add .",
"coveralls": "cat ./coverage/ngx-feature-toggle/lcov.info | ./node_modules/.bin/coveralls && rm -rf coverage",
"build:ssr": "ng run ngx-feature-toggle-demo:build:production",
"serve:ssr": "node dist/ngx-feature-toggle-demo/server/server.mjs"
},
"private": false,
"license": "MIT",
"keywords": [
"angular",
"ngx",
"ng",
"feature-toggle",
"feature",
"flag",
"on",
"off",
"toggle",
"ngx-feature-toggle"
],
"repository": {
"type": "git",
"url": "https://github.com/willmendesneto/ngx-feature-toggle.git"
},
"bugs": {
"url": "https://github.com/willmendesneto/ngx-feature-toggle/issues"
},
"homepage": "https://github.com/willmendesneto/ngx-feature-toggle#readme",
"dependencies": {
"@angular/animations": "21.0.1",
"@angular/common": "21.0.1",
"@angular/compiler": "21.0.1",
"@angular/core": "21.0.1",
"@angular/forms": "21.0.1",
"@angular/platform-browser": "21.0.1",
"@angular/platform-browser-dynamic": "21.0.1",
"@angular/platform-server": "21.0.1",
"@angular/router": "21.0.1",
"@angular/ssr": "21.0.1",
"chromedriver": "^129.0.2",
"express": "^4.21.0",
"feature-toggle-service": "^7.0.1",
"tslib": "^2.8.1",
"zone.js": "0.16.0"
},
"devDependencies": {
"@angular-devkit/build-angular": "21.0.1",
"@angular-devkit/core": "21.0.1",
"@angular-devkit/schematics": "21.0.1",
"@angular/cli": "21.0.1",
"@angular/compiler-cli": "21.0.1",
"@angular/language-service": "21.0.1",
"@schematics/angular": "21.0.1",
"@types/express": "^5.0.0",
"@types/jasmine": "^5.1.4",
"@types/jasminewd2": "~2.0.13",
"@types/node": "^22.7.4",
"@typescript-eslint/eslint-plugin": "^8.48.0",
"@typescript-eslint/parser": "^8.48.0",
"angular-eslint": "^21.0.1",
"bundlesize": "^0.18.2",
"changelog-verify": "^1.1.2",
"core-js": "^3.38.1",
"coveralls": "^3.1.1",
"eslint": "^9.39.1",
"jasmine-core": "^5.3.0",
"jasmine-spec-reporter": "~7.0.0",
"karma": "~6.4.4",
"karma-chrome-launcher": "~3.2.0",
"karma-coverage": "^2.2.1",
"karma-coverage-istanbul-reporter": "~3.0.3",
"karma-jasmine": "~5.1.0",
"karma-jasmine-html-reporter": "^2.1.0",
"ng-packagr": "^21.0.0",
"protractor": "~7.0.0",
"ts-node": "~10.9.2",
"typescript": "~5.9.3",
"typescript-eslint": "^8.48.0",
"version-changelog": "^3.1.1"
},
"engines": {
"node": "^20.19.0 || ^22.12.0 || ^24.0.0"
}
}