-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
44 lines (44 loc) · 1.19 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
{
"name": "testrunner",
"version": "1.0.0",
"description": "",
"main": "src/index.js",
"config": {
"TESTCASES_JSON": "https://act-rules.github.io/testcases.json",
"TESTCASES_KEY": "testcases"
},
"scripts": {
"build": "npm run fmt && npm run lint && npm run test",
"lint": "eslint --fix 'src/**/*.js'",
"test": "jest",
"fmt": "prettier-standard '**/*.{js,md,json}'"
},
"dependencies": {
"axios": "^0.18.0",
"is-url": "^1.2.4",
"puppeteer": "^1.15.0"
},
"devDependencies": {
"eslint": "^5.16.0",
"eslint-config-prettier": "^3.6.0",
"eslint-config-prettier-standard": "^2.0.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.17.2",
"eslint-plugin-node": "^7.0.1",
"eslint-plugin-prettier": "^2.7.0",
"eslint-plugin-promise": "^4.1.1",
"eslint-plugin-standard": "^4.0.0",
"jest": "^24.7.1",
"prettier-standard": "^8.0.1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/act-rules/testrunner"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/act-rules/testrunner/issues"
},
"homepage": "https://github.com/act-rules/testrunner#readme"
}