This repository was archived by the owner on Mar 30, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.09 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 2.09 KB
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
71
72
73
74
75
76
{
"name": "@infracost/compost",
"version": "0.0.9",
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"bugs": {
"url": "https://github.com/infracost/compost/issues"
},
"bin": {
"compost": "./bin/run"
},
"files": [
"/bin",
"/dist",
"/npm-shrinkwrap.json",
"/oclif.manifest.json"
],
"oclif": {
"commands": "./dist/cli/commands",
"bin": "compost"
},
"dependencies": {
"@oclif/command": "^1.8.0",
"@oclif/config": "^1.17.0",
"@oclif/errors": "^1.3.5",
"@oclif/parser": "^3.8.5",
"@oclif/plugin-help": "^3.2.4",
"@octokit/graphql-schema": "^10.73.0",
"@octokit/plugin-retry": "^3.0.9",
"@octokit/types": "^6.34.0",
"axios": "^0.24.0",
"chalk": "^4.1.2",
"octokit": "^1.7.0"
},
"devDependencies": {
"@oclif/dev-cli": "^1.26.0",
"@oclif/test": "^1.2.8",
"@types/jest": "^27.0.2",
"@types/node": "^16.11.7",
"@types/prettier": "^2.4.1",
"@types/yargs": "^17.0.5",
"@typescript-eslint/eslint-plugin": "^5.3.1",
"@typescript-eslint/parser": "^5.3.1",
"chai": "^4.3.4",
"dotenv": "^10.0.0",
"eslint": "^8.2.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-prettier": "^4.0.0",
"jest": "^27.3.1",
"prettier": "^2.4.1",
"simple-git": "^2.47.1",
"ts-jest": "^27.0.7",
"ts-node": "^10.4.0",
"typescript": "^4.4.4"
},
"homepage": "https://github.com/infracost/compost#readme",
"license": "Apache-2.0",
"main": "dist/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/infracost/compost.git"
},
"scripts": {
"build": "tsc",
"format": "prettier --write 'src/**/*.{js,ts}'",
"lint": "eslint --ext .ts,.js --ignore-path .gitignore .",
"test": "jest --testPathIgnorePatterns ./e2e --setupFiles ./src/setupTests.ts",
"test:e2e": "jest ./e2e --setupFiles ./src/setupTests.ts",
"test:e2e:cleanup": "ts-node -r ./src/setupTests.ts ./src/e2e/cleanup.ts"
},
"types": "dist/index.d.ts"
}