-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.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
{
"name": "@angular-ru/jest-utils",
"version": "0.0.0",
"description": "",
"homepage": "https://github.com/Angular-RU/angular-jest-utils#readme",
"bugs": {
"url": "https://github.com/Angular-RU/angular-jest-utils/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Angular-RU/angular-jest-utils.git"
},
"license": "MIT",
"author": "Maxim Ivanov",
"main": "./lib/index.js",
"typings": "./lib/index.d.ts",
"scripts": {
"build": "tsc",
"format": "npx sort-package-json && npx prettier --write \"**/*.{ts,html,css,scss,md,js,json}\"",
"lint": "npx eslint --fix **/*.ts",
"prepublishOnly": "tsc",
"test": "jest --config ./jest.config.js --colors",
"test:ci": "jest --config ./jest.config.js --colors --coverage"
},
"prettier": "@angular-ru/prettier-config",
"dependencies": {
"@types/jest": "25.2.3",
"jest": "25.5.4",
"jest-preset-angular": "8.2.0",
"ts-jest": "25.5.1"
},
"devDependencies": {
"@angular-ru/eslint-config": "12.6.0",
"@angular-ru/prettier-config": "12.7.0",
"@angular-ru/tsconfig": "12.1.0",
"@angular/compiler": "8.2.14",
"@angular/core": "8.2.14",
"@types/node": "13.13.5",
"eslint": "6.8.0",
"npx": "10.2.2",
"sort-package-json": "1.42.2",
"ts-node": "8.10.1",
"tslib": "1.11.2",
"typescript": "3.8.3"
}
}