server-control-s3 0.0.13 → 0.0.14

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "server-control-s3",
3
- "version": "0.0.13",
3
+ "version": "0.0.14",
4
4
  "author": {
5
5
  "name": "Jim Lake"
6
6
  },
@@ -17,20 +17,38 @@
17
17
  "url": "git@github.com:jim-lake/server-control-s3.git"
18
18
  },
19
19
  "files": [
20
- "src/*",
21
- "scripts/*",
22
- "npm-shrinkwrap.json"
20
+ "dist/*",
21
+ "scripts/*"
23
22
  ],
24
- "main": "src/index.js",
23
+ "main": "dist/server_control.js",
25
24
  "scripts": {
26
- "lint": "eslint src --ext js",
27
- "pretty": "prettier --write src/*.js"
25
+ "build": "rollup -c",
26
+ "lint": "eslint src --ext js && eslint test --ext ts && eslint example --ext js",
27
+ "pretty": "prettier --write \"src/*.js\" \"example/*.js\" \"test/*.ts\"",
28
+ "test": "npm run build && npm run test-only",
29
+ "test-only": "NODE_OPTIONS='--import=tsx' mocha --require test/local_setup.ts \"test/*.test.ts\""
28
30
  },
29
31
  "dependencies": {
30
- "async": "3.2.4",
31
- "aws-sdk": "2.1366.0",
32
- "body-parser": "1.20.2",
33
- "cookie-parser": "1.4.6",
34
- "request": "2.88.2"
32
+ "@aws-sdk/client-auto-scaling": "^3.525.0",
33
+ "@aws-sdk/client-ec2": "^3.525.0",
34
+ "@aws-sdk/client-s3": "^3.525.0",
35
+ "async": "3.2.6"
36
+ },
37
+ "devDependencies": {
38
+ "@rollup/plugin-commonjs": "^28.0.6",
39
+ "@rollup/plugin-node-resolve": "^16.0.1",
40
+ "@types/chai": "^5.2.2",
41
+ "@types/mocha": "^10.0.10",
42
+ "@types/supertest": "^6.0.3",
43
+ "@typescript-eslint/eslint-plugin": "^8.36.0",
44
+ "@typescript-eslint/parser": "^8.36.0",
45
+ "chai": "^5.2.0",
46
+ "eslint": "^9.30.1",
47
+ "eslint-plugin-import": "^2.32.0",
48
+ "mocha": "^11.7.1",
49
+ "rollup": "^4.44.2",
50
+ "supertest": "^7.1.2",
51
+ "tsx": "^4.20.3",
52
+ "typescript": "^5.8.3"
35
53
  }
36
54
  }