-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
66 lines (66 loc) · 1.33 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
65
66
{
"name": "@askwonder/wonqa",
"version": "0.2.3",
"description": "On-demand test environments",
"main": "src/index.js",
"scripts": {
"test": "jest"
},
"author": "askwonder.com",
"repository": {
"type": "git",
"url": "https://github.com/askwonder/wonqa.git"
},
"license": "MIT",
"dependencies": {
"aws-sdk": "^2.273.1",
"dnsimple": "^3.0.1",
"eslint": "^5.1.0",
"lodash": "^4.17.11",
"octokat": "^0.10.0"
},
"devDependencies": {
"aws-sdk-mock": "^5.1.0",
"babel-eslint": "^10.0.1",
"eslint-config-airbnb": "^17.0.0",
"eslint-plugin-import": "^2.13.0",
"eslint-plugin-jsx-a11y": "^6.1.1",
"eslint-plugin-react": "^7.10.0",
"jest": "^24.8.0"
},
"keywords": [
"aws",
"fargate",
"ecs",
"docker",
"dns",
"qa",
"testing",
"ssl",
"https",
"aws-sdk"
],
"publishConfig": {
"registry": "https://npm.pkg.github.com"
},
"jest": {
"collectCoverageFrom": [
"src/**/*.{js,jsx,mjs}"
],
"testMatch": [
"<rootDir>/src/**/__tests__/**/*.{js,jsx,mjs}",
"<rootDir>/src/**/?(*.)(spec|test).{js,jsx,mjs}"
],
"testEnvironment": "node",
"testURL": "http://localhost",
"moduleFileExtensions": [
"web.js",
"mjs",
"js",
"json",
"web.jsx",
"jsx",
"node"
]
}
}