-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
55 lines (55 loc) · 1.53 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
{
"name": "testcafe-angular-selectors",
"version": "0.4.1",
"description": "Angular selectors for TestCafe",
"author": {
"name": "Developer Express Inc.",
"url": "https://devexpress.com"
},
"repository": {
"type": "git",
"url": "https://github.com/devexpress/testcafe-angular-selectors"
},
"main": "src/index",
"files": [
"src",
"ts-defs"
],
"license": "MIT",
"scripts": {
"install-angular-15-deps": "cd ./test/data/angular-15 && npm i --force",
"install-angular-deps": "npm run install-angular-15-deps",
"lint": "eslint src/*.js test/*.js",
"http-server": "http-server ./ -s",
"compile-angular-15-app": "cd test/data/angular-15 && npx ng build angular-app",
"compile-angular-apps": "npm run compile-angular-15-app",
"testcafe": "testcafe chrome,firefox,edge test/*-test.js --app \"npm run http-server\"",
"test": "npm run install-angular-deps && npm run lint && npm run compile-angular-apps && npm run testcafe",
"publish-please": "publish-please",
"prepublish": "publish-please guard"
},
"devDependencies": {
"@babel/eslint-parser": "^7.1.1",
"eslint": "^8.17.0",
"eslint-plugin-testcafe": "^0.2.1",
"http-server": "^14.1.1",
"publish-please": "^5.5.2",
"testcafe": "^2.3.1"
},
"keywords": [
"testcafe",
"angular",
"selectors",
"plugin"
],
"peerDependencies": {
"testcafe": ">=0.18.0"
},
"types": "./ts-defs/index.d.ts",
"overrides": {
"lodash": "^4.17.21"
},
"resolutions": {
"lodash": "^4.17.21"
}
}