-
Notifications
You must be signed in to change notification settings - Fork 37
/
Copy pathpackage.json
54 lines (54 loc) · 1.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
{
"name": "run-test",
"version": "1.0.0",
"description": "run framework session on browserstack ",
"main": "src/index.js",
"scripts": {
"lint": "eslint . --ext .js",
"build": "ncc build src/index.js",
"test": "npm run lint && nyc --reporter=html mocha 'test/**/*test.js'"
},
"husky": {
"hooks": {
"pre-commit": "npm run test && npm run build && git add dist/"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/browserstack/github-actions.git"
},
"keywords": [
"actions",
"browserstack",
"run-tests",
"frameworks"
],
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/browserstack/github-actions/issues"
},
"homepage": "https://github.com/browserstack/github-actions#readme",
"dependencies": {
"@actions/artifact": "^1.1.1",
"@actions/core": "^1.2.7",
"@actions/github": "^4.0.0",
"cli-table": "^0.3.6",
"request": "^2.88.2"
},
"devDependencies": {
"@vercel/ncc": "^0.36.1",
"chai": "^4.3.4",
"eslint": "^7.25.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-plugin-import": "^2.22.1",
"husky": "^6.0.0",
"mocha": "^10.2.0",
"nyc": "^15.1.0",
"rewire": "^5.0.0",
"sinon": "^10.0.0"
},
"engines": {
"npm": ">=7.0.0"
}
}