forked from fulls1z3/ngx-cache
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
100 lines (100 loc) · 3.07 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
{
"name": "ngx-cache",
"version": "7.0.0",
"description": "Cache utility for Angular",
"repository": {
"type": "git",
"url": "https://github.com/fulls1z3/ngx-cache.git"
},
"keywords": [],
"author": {
"name": "Burak Tasci",
"email": "me@fulls1z3.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": "~7.2.0-rc.0",
"@angular/compiler": "~7.2.0-rc.0",
"@angular/compiler-cli": "~7.2.0-rc.0",
"@angular/core": "~7.2.0-rc.0",
"@angular/platform-browser": "~7.2.0-rc.0",
"@commitlint/cli": "~7.2.1",
"@commitlint/config-conventional": "~7.1.2",
"@types/jest": "~23.3.10",
"@types/node": "~10.12.18",
"angular-tslint-rules": "~1.12.1",
"codelyzer": "~4.5.0",
"core-js": "~2.6.1",
"husky": "~1.3.0",
"jest": "~23.6.0",
"jest-junit-reporter": "~1.1.0",
"jest-preset-angular": "~6.0.2",
"lint-staged": "~8.1.0",
"ng-packagr": "~4.4.5",
"prettier": "~1.15.3",
"prettier-tslint": "~0.4.1",
"reflect-metadata": "~0.1.12",
"request": "~2.88.0",
"rimraf": "~2.6.2",
"rxjs": "~6.3.3",
"standard-version": "~4.4.0",
"ts-node": "~7.0.1",
"tsickle": "~0.34.0",
"tslib": "~1.9.3",
"tslint": "~5.12.0",
"tslint-config-prettier": "~1.17.0",
"typescript": "~3.2.2",
"zone.js": "~0.8.26"
},
"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",
"globals": {
"ts-jest": {
"tsConfigFile": "./tsconfig.json"
},
"__TRANSFORM_HTML__": true
},
"moduleNameMapper": null,
"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"
]
},
"greenkeeper": {
"ignore": [
"rollup"
]
}
}