-
Notifications
You must be signed in to change notification settings - Fork 37
/
package.json
54 lines (54 loc) · 1.17 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": "setup-env",
"version": "1.0.3",
"description": "Setup BrowserStack Test Environment",
"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",
"setup test environment"
],
"author": "",
"license": "MIT",
"dependencies": {
"@actions/core": "^1.2.6",
"@actions/github": "^4.0.0",
"axios": "^1.7.7"
},
"devDependencies": {
"@vercel/ncc": "^0.38.1",
"chai": "^4.2.0",
"eslint": "^7.2.0",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-plugin-import": "^2.22.0",
"husky": "^4.2.5",
"mocha": "^8.1.1",
"nyc": "^15.1.0",
"sinon": "^9.0.2"
},
"nyc": {
"all": true,
"exclude": [
"**/*.test.js",
"node_modules",
".eslintrc.js",
"coverage",
"dist/*",
"config"
]
}
}