-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.74 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 2.74 KB
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
{
"name": "@centigrade/ngtx",
"version": "2.6.3",
"description": "The Angular Testing Extensions is a small set of functions, aiming to make your life easier, when testing Angular components.",
"scripts": {
"clean": "shx rm -rf dist",
"prebuild": "npm run clean && npm run build:mjs && npm run build:umd",
"build:mjs": "tsc -p tsconfig-mjs.json",
"build:umd": "tsc -p tsconfig-cjs.json",
"build": "shx cp package.json dist/package.json && shx cp README.md dist/README.md && node buildhelper/package-json-preparer.js package.json dist/package.json",
"start": "npx http-server -o projects/showcase/index.html",
"test": "jest",
"test:coverage": "jest --coverage",
"test:pattern": "jest --testPathPattern",
"test:clear-cache": "jest --clear-cache",
"lint": "tslint -c tslint.json 'projects/**/*.ts'",
"lint:format": "prettier --check \"projects/**/*.{ts,scss,html}\" ",
"format": "prettier --write \"projects/**/*.{ts,scss,html}\"",
"prepublish": "npm run build",
"prepublish:alpha": "npm run build",
"publish": "npm run test && cd dist && npm publish",
"publish:alpha": "npm run test && cd dist && npm publish --tag alpha",
"publish:preview": "shx mkdir -p ./out && cd dist && npm pack && shx mv -f *.tgz ../out/"
},
"contributors": [
{
"name": "Julian Lang",
"email": "julian.lang@centigrade.de"
},
{
"name": "Patrick-Andre Decker",
"email": "patrick-andre.decker@centigrade.de"
}
],
"peerDependencies": {
"@angular-devkit/build-angular": ">=17",
"@angular/common": ">=17",
"@angular/compiler": ">=17",
"@angular/core": ">=17",
"@angular/platform-browser": ">=17",
"rxjs": ">=6.0.0"
},
"devDependencies": {
"@angular-devkit/build-angular": "^17.3.8",
"@angular/common": "~17.0.0",
"@angular/compiler": "~17.0.0",
"@angular/compiler-cli": "~17.0.0",
"@angular/core": "~17.0.0",
"@angular/platform-browser": "~17.0.0",
"@angular/platform-browser-dynamic": "~17.0.0",
"@babel/core": "^7.15.5",
"@babel/preset-env": "^7.15.6",
"@babel/preset-typescript": "^7.15.0",
"@types/jest": "^27.0.2",
"babel-jest": "^29.0.0",
"jest": "^29.2.4",
"jest-preset-angular": "^14.1.0",
"prettier": "^2.4.1",
"rxjs": "^7.3.0",
"shx": "^0.3.3",
"ts-jest": "^29.0.0",
"ts-node": "^10.2.1",
"tslint": "^6.1.3",
"typescript": "5.2.2",
"zone.js": "^0.14.0"
},
"homepage": "https://github.com/Centigrade/ngtx",
"files": [
"**/*"
],
"repository": {
"type": "git",
"url": "https://github.com/Centigrade/ngtx.git"
},
"author": "Julian Lang <julian.lang@centigrade.de>",
"license": "MIT"
}