-
Notifications
You must be signed in to change notification settings - Fork 30
/
package.json
92 lines (92 loc) · 2.48 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
{
"name": "@ngx-translate/i18n-polyfill",
"description": "A speculative polyfill to support i18n code translations in Angular",
"version": "1.0.0",
"private": false,
"scripts": {
"prebuild": "del-cli dist",
"build": "npm run package && npm run build:cli",
"build:cli": "tsc -p tsconfig.cli.json",
"postbuild:cli": "crlf --set=LF dist/**/*.js",
"commit": "git-cz",
"lint": "tslint --project tsconfig.json src/**/*.ts",
"prepublish": "npm run lint && npm run test && npm run build",
"publish": "npm publish dist",
"test": "jest",
"test:watch": "jest --watch",
"test:ci": "jest --runInBand",
"package": "ng-packagr -p lib/ng-package.json",
"release": "standard-version"
},
"jest": {
"preset": "jest-preset-angular",
"setupTestFrameworkScriptFile": "<rootDir>/test/jest.ts",
"globals": {
"ts-jest": {
"tsConfigFile": "test/tsconfig.spec.json"
}
},
"testRegex": "test/.*\\.(test|spec)\\.(ts|js)$"
},
"repository": {
"type": "git",
"url": "https://github.com/ngx-translate/i18n-polyfill"
},
"author": {
"name": "Olivier Combe",
"email": "[email protected]"
},
"keywords": [
"angular",
"i18n"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/ngx-translate/i18n-polyfill/issues"
},
"peerDependencies": {},
"devDependencies": {
"@angular/common": "6.0.3",
"@angular/compiler": "6.0.3",
"@angular/compiler-cli": "6.0.3",
"@angular/core": "6.0.3",
"@angular/platform-browser": "6.0.3",
"@angular/platform-browser-dynamic": "6.0.3",
"@types/core-js": "0.9.43",
"@types/glob": "5.0.33",
"@types/jest": "21.1.8",
"@types/node": "8.0.54",
"@types/prettier": "1.8.1",
"@types/yargs": "8.0.2",
"codelyzer": "4.3.0",
"commitizen": "2.9.6",
"core-js": "2.5.1",
"crlf": "1.1.1",
"del-cli": "1.1.0",
"glob": "7.1.2",
"jest": "22.0.4",
"jest-cli": "22.0.4",
"jest-preset-angular": "5.0.0",
"ng-packagr": "^3.0.0",
"node-watch": "0.5.5",
"prettier": "1.9.0",
"rxjs": "6.2.0",
"standard-version": "4.2.0",
"tsickle": "0.26.0",
"tslib": "^1.7.1",
"tslint": "5.8.0",
"tslint-config-prettier": "1.6.0",
"tslint-no-circular-imports": "0.2.0",
"typescript": "~2.7.2",
"yargs": "^12.0.5",
"zone.js": "0.8.18"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"engines": {
"node": ">=6.0.0"
}
}