forked from robisim74/angular-l10n
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
101 lines (101 loc) · 3.26 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
{
"name": "angular-l10n",
"private": true,
"version": "6.6.1",
"description": "An Angular library to translate messages, dates and numbers",
"main": "./bundles/angular-l10n.umd.js",
"module": "./fesm5/angular-l10n.js",
"es2015": "./fesm2015/angular-l10n.js",
"esm5": "./esm5/angular-l10n.js",
"esm2015": "./esm2015/angular-l10n.js",
"fesm5": "./fesm5/angular-l10n.js",
"fesm2015": "./fesm2015/angular-l10n.js",
"typings": "./angular-l10n.d.ts",
"scripts": {
"build": "node build.js",
"test": "karma start",
"test:watch": "karma start karma.conf.js --single-run false",
"pack:lib": "npm pack ./dist",
"publish:lib": "npm publish ./dist",
"publish:lib:next": "npm publish --tag next ./dist",
"build:docs": "python -m mkdocs build",
"serve:docs": "python -m mkdocs serve",
"publish:docs": "python -m mkdocs gh-deploy"
},
"author": "Roberto Simonetti",
"repository": {
"type": "git",
"url": "https://github.com/robisim74/angular-l10n.git"
},
"bugs": {
"url": "https://github.com/robisim74/angular-l10n/issues"
},
"homepage": "https://github.com/robisim74/angular-l10n",
"keywords": [
"angular",
"javascript",
"typescript",
"internationalization",
"i18n",
"localization",
"l10n",
"translate",
"validation"
],
"license": "MIT",
"dependencies": {
"tslib": "^1.9.0"
},
"peerDependencies": {
"rxjs": ">= 6.0.0",
"@angular/common": ">= 7.0.0",
"@angular/core": ">= 7.0.0",
"@angular/forms": ">= 7.0.0",
"@angular/router": ">= 7.0.0"
},
"devDependencies": {
"@angular/animations": "7.0.0",
"@angular/common": "7.0.0",
"@angular/compiler": "7.0.0",
"@angular/compiler-cli": "7.0.0",
"@angular/core": "7.0.0",
"@angular/forms": "7.0.0",
"@angular/platform-browser": "7.0.0",
"@angular/platform-browser-dynamic": "7.0.0",
"@angular/platform-server": "7.0.0",
"@angular/router": "7.0.0",
"@types/jasmine": "2.8.9",
"@types/node": "10.12.0",
"chalk": "2.4.1",
"codelyzer": "4.5.0",
"core-js": "2.5.7",
"istanbul-instrumenter-loader": "3.0.1",
"jasmine-core": "3.2.1",
"karma": "3.0.0",
"karma-chrome-launcher": "2.2.0",
"karma-coverage-istanbul-reporter": "2.0.4",
"karma-jasmine": "1.1.2",
"karma-sourcemap-loader": "0.3.7",
"karma-spec-reporter": "0.0.32",
"karma-webpack": "4.0.0-rc.2",
"node-sass": "4.9.4",
"reflect-metadata": "0.1.12",
"rollup": "0.66.6",
"rollup-plugin-license": "0.7.0",
"rollup-plugin-node-resolve": "3.4.0",
"rollup-plugin-sourcemaps": "0.4.2",
"rxjs": "6.3.3",
"shelljs": "0.8.2",
"source-map-loader": "0.2.4",
"ts-loader": "5.2.2",
"tslint": "5.11.0",
"tslint-angular": "1.1.2",
"typescript": "3.1.3",
"uglify-js": "3.4.9",
"webpack": "4.21.0",
"zone.js": "0.8.26",
"tsickle": "0.33.0",
"webpack-filter-warnings-plugin": "1.2.0"
},
"sideEffects": false
}