-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
80 lines (80 loc) · 2.35 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
{
"name": "angular-translator",
"version": "3.1.2",
"description": "A translate-service, translate-pipe and translate-component for angular2",
"repository": {
"type": "git",
"url": "https://github.com/tflori/angular-translator.git"
},
"scripts": {
"test": "karma start config/karma.conf.js",
"tslint": "tslint -c tslint.json --exclude \"**/*.d.ts\" --exclude \"node_modules/**/*.ts\" \"**/*.ts\"",
"prepublishOnly": "npm test && npm run build",
"coveralls": "cat coverage/lcov.info | coveralls",
"build": "tsc && ngc && webpack --mode production"
},
"keywords": [
"angular2",
"translate",
"i18n"
],
"author": {
"name": "Thomas Flori",
"email": "[email protected]",
"url": "https://github.com/tflori"
},
"contributors": [
{
"name": "Marc Bornträger",
"url": "https://github.com/BorntraegerMarc"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/tflori/angular-translator/issues"
},
"main": "./bundles/angular-translator.js",
"typings": "./index.d.ts",
"homepage": "https://github.com/tflori/angular-translator",
"peerDependencies": {
"@angular/common": ">=7.0",
"@angular/compiler": ">=7.0",
"@angular/core": ">=7.0",
"@angular/http": ">=7.0",
"rxjs": "*"
},
"devDependencies": {
"@angular/common": "^7.2.16",
"@angular/compiler": "^7.2.16",
"@angular/compiler-cli": "^7.2.16",
"@angular/core": "^7.2.16",
"@angular/http": "^7.2.16",
"@angular/platform-browser": "^7.2.16",
"@angular/platform-browser-dynamic": "^7.2.16",
"@types/jasmine": "^2.8.17",
"@types/node": "~14.0.4",
"awesome-typescript-loader": "^5.2.1",
"core-js": "^3.12.1",
"coverage-istanbul-loader": "^3.0.5",
"jasmine-core": "2.5.*",
"karma": "^6.3.2",
"karma-chrome-launcher": "^2.2.0",
"karma-coverage": "^2.0.3",
"karma-coverage-istanbul-reporter": "^3.0.3",
"karma-firefox-launcher": "^2.1.0",
"karma-jasmine": "^1.1.2",
"karma-sourcemap-loader": "^0.3.8",
"karma-spec-reporter": "0.0.31",
"karma-webpack": "^5.0.0",
"reflect-metadata": "^0.1.13",
"rxjs": "^6.6.7",
"rxjs-compat": "^6.6.7",
"source-map-loader": "^0.2.4",
"ts-helpers": "*",
"tslint": "^5.20.1",
"typescript": "^3.2.4",
"webpack": "^5.36.2",
"webpack-cli": "^4.7.0",
"zone.js": "^0.8.29"
}
}