-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
49 lines (49 loc) · 1.26 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
{
"name": "aws-cli-js",
"version": "2.2.3",
"description": "A node.js wrapper for the aws command line interface",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib/"
],
"scripts": {
"lint": "eslint . --fix --ext .ts",
"clean": "npx del-cli lib",
"test": "jest",
"test16": "jest ./src/issue#16.spec.ts",
"prepare": "npm run lint && tsc && npx del-cli lib/**/*.spec.* "
},
"repository": {
"type": "git",
"url": "git+https://github.com/Quobject/aws-cli-js.git"
},
"keywords": [
"aws",
"aws-cli"
],
"author": "Matthias Ludwig <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/Quobject/aws-cli-js/issues"
},
"homepage": "https://github.com/Quobject/aws-cli-js",
"devDependencies": {
"@types/jest": "^26.0.20",
"@types/lodash": "^4.14.168",
"@types/node": "^14.14.25",
"@typescript-eslint/eslint-plugin": "^4.14.2",
"@typescript-eslint/parser": "^4.13.0",
"del-cli": "^3.0.1",
"eslint": "^7.17.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.22.1",
"jest": "^26.6.3",
"ts-jest": "^26.4.4",
"ts-node": "^9.1.1",
"typescript": "^4.1.3"
},
"dependencies": {
"nodeify-ts": "1.0.6"
}
}