-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
70 lines (70 loc) · 2.09 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
67
68
69
70
{
"name": "edilkamin",
"version": "1.5.0",
"description": "",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"types": "dist/esm/index.d.ts",
"scripts": {
"cli": "ts-node src/cli.ts",
"cli:debug": "node --inspect --require ts-node/register/transpile-only src/cli.ts",
"test": "nyc mocha --require ts-node/register src/*.test.ts",
"test:debug": "nyc mocha --require ts-node/register/transpile-only --inspect src/*.test.ts",
"lint:prettier": "prettier --check src docs .github *.json *.md *.mjs",
"format:prettier": "prettier --write src docs .github *.json *.md *.mjs",
"lint:eslint": "eslint src",
"format:eslint": "eslint --fix src",
"lint": "yarn lint:prettier && yarn lint:eslint",
"format": "yarn format:prettier && yarn format:eslint",
"build:cjs": "tsc -p tsconfig.cjs.json",
"build:esm": "tsc -p tsconfig.esm.json",
"build": "npm run build:cjs && npm run build:esm"
},
"repository": {
"type": "git",
"url": "git+https://github.com/AndreMiras/edilkamin.js.git"
},
"author": "Andre Miras",
"license": "MIT",
"bugs": {
"url": "https://github.com/AndreMiras/edilkamin.js/issues"
},
"homepage": "https://github.com/AndreMiras/edilkamin.js#readme",
"bin": {
"edilkamin": "dist/cjs/cli.js"
},
"nyc": {
"reporter": [
"html",
"lcov",
"text"
]
},
"dependencies": {
"aws-amplify": "^6.10.0",
"axios": "^0.26.0"
},
"devDependencies": {
"@aws-amplify/cli": "^7.6.21",
"@eslint/eslintrc": "^3.2.0",
"@eslint/js": "^9.16.0",
"@types/mocha": "^10.0.10",
"@types/sinon": "^17.0.3",
"@typescript-eslint/eslint-plugin": "^8.17.0",
"@typescript-eslint/parser": "^8.17.0",
"eslint": "^9.16.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-simple-import-sort": "^12.1.1",
"mocha": "^10.8.2",
"nyc": "^17.1.0",
"prettier": "^2.5.1",
"sinon": "^19.0.2",
"ts-node": "^10.9.1",
"typedoc": "^0.27.2",
"typescript": "^5.7.2"
},
"optionalDependencies": {
"commander": "^12.1.0"
}
}