-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
25 lines (25 loc) · 813 Bytes
/
package.json
File metadata and controls
25 lines (25 loc) · 813 Bytes
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
{
"name": "delete-test-01",
"description": "delete-test-01-description",
"version": "0.0.1",
"private": true,
"dependencies": {
"aws-sdk": "^2.720.0",
"aws-xray-sdk": "^3.1.0",
"uuid": "^8.2.0"
},
"devDependencies": {
"aws-sdk-mock": "^5.1.0",
"chai": "^4.2.0",
"jest": "^26.1.0",
"mocha": "^8.1.3",
"sinon": "^9.0.2"
},
"// scripts notes": {
"install": "This script runs after an npm install command to update all files that are 30 years or more older. SAM uses webpack and uglify-js which has corrupt file dates in a recent version. This causes SAM deployments to fail."
},
"scripts": {
"test": "jest",
"install": "find ./node_modules/* -mtime +10950 -exec touch {} \\;"
}
}