-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
74 lines (74 loc) · 2.28 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
{
"name": "angular-unit-test-helper",
"version": "18.0.0",
"description": "Helper functions to help write unit tests in Angular using mocks and spies",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"test": "tsx node_modules/jasmine/bin/jasmine --config=./jasmine.json",
"prebuild": "rimraf dist",
"build": "tsc -p tsconfig.src.json",
"pretest": "npm run build && npm run build:test",
"prepublish": "npm test",
"postpublish": "git push origin --all && git push origin --tags",
"style": "prettier --check \"{src,tests}/**/*.ts\"",
"style:fix": "npm run style -- --write",
"lint": "eslint \"{src,tests}/**/*.ts\"",
"lint:fix": "npm run lint -- --fix",
"prestart": "npm run build",
"start": "env-cmd node dist/index.js",
"build:test": "tsc -p tests/tsconfig.spec.json",
"prepublishOnly": "npm run test",
"prepare": "npm run build",
"test:ci": "npm test",
"init:env": "init-dev-env generate-dot-env example.env -f",
"release:beta": "npm version $(semver $npm_package_version -i prerelease --preid beta)"
},
"repository": {
"type": "git",
"url": "git+https://github.com/duluca/angular-unit-test-helper.git"
},
"keywords": [
"angular",
"unit",
"test",
"jasmine",
"mock",
"spy"
],
"author": "Doguhan Uluca",
"license": "MIT",
"bugs": {
"url": "https://github.com/duluca/angular-unit-test-helper/issues"
},
"homepage": "https://github.com/duluca/angular-unit-test-helper#readme",
"overrides": {
"braces": "^3.0.3",
"cross-spawn": "^7.0.5",
"micromatch": "^4.0.8"
},
"devDependencies": {
"@angular/compiler": "^18.2.12",
"@angular/core": "^18.2.12",
"@angular/platform-browser": "18.2.12",
"@types/jasmine": "^5.1.4",
"@types/node": "^22.9.1",
"@typescript-eslint/eslint-plugin": "^6.15.0",
"@typescript-eslint/parser": "^6.15.0",
"cross-conf-env": "^1.3.0",
"dev-norms": "^2.0.4",
"env-cmd": "^10.1.0",
"eslint": "^8.57.0",
"init-dev-env": "^2.0.0",
"jasmine": "^5.4.0",
"jasmine-core": "^5.4.0",
"npm-run-all": "^4.1.5",
"prettier": "^3.3.3",
"rimraf": "^6.0.1",
"rxjs": "^7.8.1",
"tsutils": "^3.21.0",
"tsx": "^4.19.2",
"typescript": "^5.4.2",
"zone.js": "^0.14.3"
}
}