-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
107 lines (107 loc) · 3.5 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
106
107
{
"name": "ngx-cache",
"version": "0.0.0",
"description": "Cache utility for Angular",
"repository": {
"type": "git",
"url": "https://github.com/fulls1z3/ngx-cache.git"
},
"keywords": [],
"author": {
"name": "Burak Tasci",
"email": "mail@buraktasci.com"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/fulls1z3/ngx-cache/issues"
},
"homepage": "https://github.com/fulls1z3/ngx-cache/core#readme",
"scripts": {
"clean": "rimraf dist",
"build:core": "ts-node tools/build/packager.ts core",
"build:platform-browser": "ts-node tools/build/packager.ts platform-browser",
"build:platform-server": "ts-node tools/build/packager.ts platform-server",
"build:fs-storage": "ts-node tools/build/packager.ts fs-storage",
"build": "npm run build:core && npm run build:platform-browser && npm run build:platform-server && npm run build:fs-storage",
"lint": "tslint -p ./tsconfig.lint.json --force",
"lint:check": "tslint-config-prettier-check ./tslint.lint.json",
"rebuild": "npm run clean && npm run build",
"ci:before": "greenkeeper-lockfile-update",
"ci:after": "greenkeeper-lockfile-upload",
"test": "jest --runInBand --colors",
"test:ci": "jest --ci --updateSnapshot --colors",
"release": "standard-version"
},
"devDependencies": {
"@angular/common": "^9.1.0",
"@angular/compiler": "^9.1.0",
"@angular/compiler-cli": "^9.1.0",
"@angular/core": "^9.1.0",
"@angular/platform-browser": "^9.1.0",
"@commitlint/cli": "^8.3.5",
"@commitlint/config-conventional": "^8.3.4",
"@types/jest": "^23.3.14",
"@types/node": "^10.0.0",
"angular-tslint-rules": "^1.20.4",
"codelyzer": "^5.2.2",
"cz-conventional-changelog": "^3.1.0",
"husky": "^4.2.0",
"jest": "^23.6.0",
"jest-junit-reporter": "^1.1.0",
"jest-preset-angular": "8.1.2",
"lerna": "^3.20.2",
"lint-staged": "^10.1.7",
"ng-packagr": "^9.0.0",
"prettier": "1.19.1",
"prettier-tslint": "^0.4.2",
"reflect-metadata": "^0.1.13",
"request": "^2.88.2",
"rimraf": "^3.0.2",
"rxjs": "~6.5.4",
"ts-node": "^8.9.0",
"tsickle": "^0.38.0",
"tslint": "^5.20.1",
"tslint-config-prettier": "^1.18.0",
"typescript": "~3.8.3",
"zone.js": "^0.10.2"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"jest": {
"preset": "jest-preset-angular",
"setupTestFrameworkScriptFile": "./tools/test/jest.setup.ts",
"testResultsProcessor": "./node_modules/jest-junit-reporter",
"testMatch": [
"**/+(*.)+(spec|test).+(ts|js)?(x)"
],
"globals": {
"ts-jest": {
"tsConfigFile": "./tsconfig.json"
},
"__TRANSFORM_HTML__": true
},
"moduleNameMapper": {
"^@ngx-cache/core": "<rootDir>/packages/@ngx-cache/core/src/index.ts",
"^@ngx-cache/platform-browser": "<rootDir>/packages/@ngx-cache/platform-browser/src/index.ts",
"^@ngx-cache/platform-server": "<rootDir>/packages/@ngx-cache/platform-server/src/index.ts",
"^@ngx-cache/fs-storage": "<rootDir>/packages/@ngx-cache/fs-storage/src/index.ts"
},
"cache": false,
"silent": true,
"collectCoverage": true,
"collectCoverageFrom": [
"packages/@ngx-cache/core/src/**.ts",
"packages/@ngx-cache/platform-browser/src/**.ts",
"packages/@ngx-cache/platform-server/src/**.ts"
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}