-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
105 lines (105 loc) · 3.15 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
{
"name": "ng2-intl",
"version": "2.0.0-rc.3",
"private": true,
"description": "Internationalize Angular2 apps. This library provides Angular2 components, pipe and an API to format dates, numbers, and strings, including pluralization and handling translations.",
"keywords": [
"intl",
"i18n",
"internationalization",
"locale",
"localization",
"globalization",
"angular2",
"ng2",
"format",
"formatting",
"translate",
"translation"
],
"main": "bundles/ng2-intl.umd.js",
"module": "index.js",
"typings": "index.d.ts",
"scripts": {
"lint": "tslint --type-check --project tsconfig.json 'module/**/*.ts'",
"clean": "rimraf dist/ lib/ locale-data/ module/src/en.ts",
"prebuild": "npm run clean",
"copy": "cp module/src/{en.js,en.d.ts} dist/src/",
"build": "npm run build:data && npm run build:dist && npm run build:umd && npm run build:files",
"build:dist": "tsc && npm run copy",
"build:data": "ts-node -P scripts/tsconfig.json scripts/build-data",
"build:umd": "webpack",
"build:files": "ts-node -P scripts/tsconfig.json scripts/make-package && cp README.md dist/",
"test": "karma start"
},
"repository": {
"type": "git",
"url": "git+https://github.com/eyolas/ng2-intl.git"
},
"author": "David Touzet <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/eyolas/ng2-intl/issues"
},
"homepage": "https://github.com/eyolas/ng2-intl#readme",
"dependencies": {
"intl-format-cache": "^2.0.5",
"intl-messageformat": "^2.1.0",
"intl-relativeformat": "^2.0.0"
},
"peerDependencies": {
"@angular/core": "^4.4.3",
"@angular/http": "^4.4.3",
"rxjs": "^5.4.3"
},
"devDependencies": {
"@angular/common": "^4.4.3",
"@angular/compiler": "^4.4.3",
"@angular/core": "^4.4.3",
"@angular/http": "^4.4.3",
"@angular/platform-browser": "^4.4.3",
"@angular/platform-browser-dynamic": "^4.4.3",
"@types/jasmine": "^2.5.38",
"@types/lodash-es": "^4.14.7",
"@types/node": "^8.0.30",
"awesome-typescript-loader": "3.2.3",
"codelyzer": "^3.2.0",
"core-js": "^2.5.1",
"cz-conventional-changelog": "^2.0.0",
"formatjs-extract-cldr-data": "^4.0.0",
"istanbul-instrumenter-loader": "3.0.0",
"jasmine-core": "2.8.0",
"karma": "1.7.1",
"karma-chrome-launcher": "2.2.0",
"karma-coverage": "1.1.1",
"karma-jasmine": "1.1.0",
"karma-mocha-reporter": "^2.1.0",
"karma-remap-coverage": "~0.1.2",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^2.0.4",
"lodash-es": "^4.17.4",
"mkdirp": "^0.5.1",
"rimraf": "^2.5.4",
"rollup": "^0.50.0",
"rollup-plugin-memory": "^2.0.0",
"rollup-plugin-uglify": "^2.0.1",
"rxjs": "^5.4.3",
"serialize-javascript": "^1.3.0",
"source-map-loader": "0.2.1",
"ts-helpers": "1.1.2",
"ts-node": "^3.3.0",
"tslint": "^5.7.0",
"tslint-loader": "^3.5.3",
"typescript": "^2.1.4",
"webpack": "^3.6.0",
"zone.js": "^0.8.17"
},
"optionalDependencies": {
"debug": "^3.0.1"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}