-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
35 lines (35 loc) · 875 Bytes
/
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
{
"name": "ghact-uilicious",
"description": "UIlicious GitHub Action to trigger test runs.",
"keywords": [
"ui-licious",
"uilicious",
"ui testing",
"automation testing",
"e2e testing"
],
"author": {
"name": "Omair Vaiyani",
"email": "[email protected]"
},
"scripts": {
"build": "ncc build src/main.ts",
"test": "node -r ts-node/register/transpile-only ./node_modules/.bin/jasmine JASMINE_CONFIG_PATH=spec/support/jasmine.json"
},
"license": "MIT",
"dependencies": {
"@actions/core": "1.2.6",
"@types/multimatch": "^4.0.0",
"multimatch": "^5.0.0"
},
"devDependencies": {
"@types/chai": "^4.2.14",
"@types/jasmine": "^3.6.1",
"@types/node": "^14.0.13",
"@vercel/ncc": "0.25.1",
"chai": "^4.2.0",
"jasmine": "^3.6.3",
"ts-node": "^9.0.0",
"typescript": "3.9.6"
}
}