-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
131 lines (131 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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
{
"name": "angularjs-testing-library",
"version": "0.0.0-semantic-release",
"description": "Simple and complete AngularJS testing utilities that encourage good testing practices.",
"main": "lib/index.js",
"engines": {
"node": ">=12"
},
"scripts": {
"prebuild": "rimraf lib",
"build": "tsc --noEmit false",
"lint": "eslint --ext .ts,.js --cache .",
"test": "jest",
"validate": "concurrently yarn:validate:*",
"validate:lint": "yarn --silent lint",
"validate:build": "yarn --silent build",
"validate:test": "yarn --silent test"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js}": [
"prettier --write",
"eslint --fix",
"git add"
],
"*.{ts}": [
"prettier --write",
"eslint --fix",
"git add"
],
"*.{json,css,md}": [
"prettier --write",
"git add"
],
"README.md": [
"doctoc --maxlevel 3 --notitle"
]
},
"files": [
"lib/*.{js,ts}",
"dont-cleanup-after-each.js"
],
"keywords": [
"testing",
"angularjs",
"ui",
"dom",
"jsdom",
"unit",
"integration",
"functional",
"end-to-end",
"e2e"
],
"contributors": [
"Jason Staten <[email protected]> (https://jxs.me)",
"Kent C. Dodds <[email protected]> (http://kentcdodds.com/)"
],
"license": "MIT",
"dependencies": {
"@testing-library/dom": "^8.5.0"
},
"devDependencies": {
"@semantic-release/git": "^7.0.17",
"@testing-library/jest-dom": "^4.1.0",
"@types/angular": "^1.6.57",
"@types/angular-mocks": "^1.7.0",
"@types/jest": "^27.0.1",
"@types/node": "^12.12.16",
"@typescript-eslint/parser": "^4.31.1",
"angular": "^1.7.8",
"angular-mocks": "^1.7.8",
"concurrently": "^5.0.0",
"doctoc": "^1.4.0",
"eslint": "^7.32.0",
"husky": "^3.1.0",
"jest": "^27.2.0",
"jest-cli": "^27.2.0",
"lint-staged": "^9.5.0",
"prettier": "^2.4.0",
"rimraf": "^3.0.0",
"semantic-release": "^15.13.30",
"ts-jest": "^27.0.5",
"typescript": "^4.4.3"
},
"peerDependencies": {
"angular": "*",
"angular-mocks": "*"
},
"eslintIgnore": [
"node_modules",
"coverage",
"lib",
"*.d.ts"
],
"repository": {
"type": "git",
"url": "https://git.sr.ht/~statianzo/angularjs-testing-library"
},
"homepage": "https://git.sr.ht/~statianzo/angularjs-testing-library",
"bugs": {
"url": "https://todo.sr.ht/~statianzo/angularjs-testing-library",
"email": "~statianzo/[email protected]"
},
"release": {
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/npm",
[
"@semantic-release/git",
{
"assets": false
}
]
],
"repositoryUrl": "[email protected]:~statianzo/angularjs-testing-library"
},
"jest": {
"preset": "ts-jest",
"setupFilesAfterEnv": [
"@testing-library/jest-dom/extend-expect",
"<rootDir>/jest-circus-setup.js"
],
"testEnvironment": "jsdom"
}
}