-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
executable file
·87 lines (87 loc) · 2.45 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": "angular4-events",
"version": "11.0.0",
"description": "Events is a publish-subscribe style event system based on sqlProvider/angular2-pubsub",
"main": "./umd/angular4-events.js",
"module": "./esm/src/index.js",
"typings": "./esm/src/index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/qligier/angular4-events.git"
},
"scripts": {
"test": "karma start",
"clean": "rm -rf dist",
"build-umd": "webpack --config webpack.config.umd.js",
"build-angular": "ngc -p tsconfig-ngc.json",
"copy-package-info": "cp ./package.json ./dist/package.json && cp ./.npmignore ./dist/.npmignore && cp ./README.md ./dist/README.md",
"build": "npm run clean && npm run build-umd && npm run build-angular && npm run copy-package-info"
},
"keywords": [
"Angular4",
"Angular5",
"Angular6",
"Angular8",
"Angular10",
"Angular11",
"pubsub",
"events",
"angular4-service"
],
"author": {
"name": "Quentin Ligier",
"url": "http://github.com/qligier"
},
"contributors": [
{
"name": "Semih KEŞKEK",
"email": "[email protected]",
"url": "http://github.com/sqlProvider"
},
{
"name": "Mert Susur",
"email": "[email protected]",
"url": "http://github.com/msusur"
},
{
"name": "Dustin Cleveland",
"url": "https://github.com/dustincleveland"
}
],
"license": "ISC",
"bugs": {
"url": "https://github.com/qligier/angular4-events/issues"
},
"homepage": "https://github.com/qligier/angular4-events#readme",
"peerDependencies": {
"@angular/forms": "~11.2.13",
"rxjs": "~6.6.0"
},
"dependencies": {
"@angular/common": "~11.2.13",
"@angular/compiler": "~11.2.13",
"@angular/core": "~11.2.13",
"@angular/platform-browser": "~11.2.13",
"rxjs": "~6.6.0"
},
"devDependencies": {
"@angular/compiler-cli": "~11.2.13",
"@angular/platform-browser-dynamic": "~11.2.13",
"@types/es6-shim": "^0.31.41",
"@types/jasmine": "3.7",
"@types/node": "^15.0",
"compression-webpack-plugin": "^7.1.2",
"jasmine-core": "3.7",
"karma": "6.3",
"karma-jasmine": "^4.0.1",
"karma-mocha-reporter": "^2.2.5",
"karma-sourcemap-loader": "^0.3.8",
"karma-webpack": "^5.0.0",
"ts-loader": "9.1",
"typescript": "^4.1.5",
"webpack": "5.37",
"webpack-cli": "4.7",
"webpack-dev-server": "^3.11.2",
"webpack-fix-default-import-plugin": "^1.0.3"
}
}