-
Notifications
You must be signed in to change notification settings - Fork 121
/
Copy pathpackage.json
45 lines (45 loc) · 1.23 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
{
"name": "acg-mastering-cloudformation",
"version": "1.0.0",
"description": "A Cloud Guru Course: Mastering CloudFormation",
"main": "index.js",
"scripts": {
"test:lint": "eslint .",
"test:unit": "jest --verbose",
"test:unit:watch": "jest --verbose --watch",
"test": "npm run test:lint && npm run test:unit",
"jest": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/iDVB/acg-mastering-cloudformation.git"
},
"author": "Dan Van Brunt <[email protected]> (https://github.com/iDVB)",
"license": "MIT",
"bugs": {
"url": "https://github.com/iDVB/acg-mastering-cloudformation/issues"
},
"homepage": "https://github.com/iDVB/acg-mastering-cloudformation#readme",
"dependencies": {
"axios": "^0.19.0",
"babel-eslint": "^10.0.3",
"clone": "^2.1.2"
},
"devDependencies": {
"aws-sdk": "^2.479.0",
"eslint": "^5.16.0",
"eslint-config-prettier": "^5.0.0",
"eslint-plugin-import": "^2.17.3",
"eslint-plugin-prettier": "^3.1.0",
"jest": "^24.8.0",
"prettier": "^1.18.2",
"prettier-eslint": "^9.0.0"
},
"jest": {
"collectCoverageFrom": [
"**/src/**/*.test.js",
"!node_modules"
],
"testEnvironment": "node"
}
}