-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.76 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
56
57
58
59
60
61
62
63
64
{
"name": "@rainforestqa/rainforest-run-info",
"version": "1.1.4",
"description": "Provides access to information about the currently executed Rainforest QA run test environment.",
"main": "./dist/main.js",
"exports": {
"require": "./dist/main.js",
"import": "./src/index.js"
},
"files": [
"dist",
"LICENSE.txt",
"README.md",
"src"
],
"engines": {
"npm": ">=6.0.0",
"node": ">=12.0.0"
},
"scripts": {
"build": "webpack --mode=production",
"prepublishOnly": "webpack --mode=production",
"test": "yarn node --experimental-vm-modules $(yarn bin jest)",
"lint": "eslint src/",
"prettier": "prettier --write \"src/**/*.js\"",
"prettier:CI": "prettier --check \"src/**/*.js\""
},
"type": "module",
"repository": "git+https://github.com/rainforestapp/rainforest-run-info.git",
"author": "Rainforest QA",
"license": "ISC",
"bugs": {
"url": "https://github.com/rainforestapp/rainforest-run-info/issues"
},
"homepage": "https://github.com/rainforestapp/rainforest-run-info#readme",
"dependencies": {
"cross-fetch": "3.1.5"
},
"devDependencies": {
"@babel/core": "7.18.6",
"@babel/eslint-parser": "7.15.0",
"@rainforestqa/eslint-config": "2.0.1",
"eslint": "7.x.x",
"eslint-plugin-babel": "5.3.1",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-jsx-a11y": "6.6.0",
"jest": "28.1.0",
"jest-environment-jsdom": "^28.1.0",
"jest-fetch-mock": "3.0.3",
"mockdate": "^3.0.5",
"prettier": "^2.7.1",
"webpack": "5.72.0",
"webpack-cli": "4.9.2"
},
"jest": {
"automock": false,
"resetMocks": false,
"setupFiles": [
"./setupJest.js"
],
"testEnvironment": "jsdom"
},
"prettier": "@rainforestqa/eslint-config/prettier.config"
}