-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
71 lines (71 loc) · 1.96 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
71
{
"name": "@cloudgraph/sdk",
"version": "0.23.0",
"description": "SDK for cloud graph providers and cli",
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "public"
},
"homepage": "https://www.cloudgraph.dev/",
"repository": "github:cloudgraphdev/sdk",
"bugs": "https://github.com/cloudgraphdev/sdk/issues",
"scripts": {
"build": "yarn prepack",
"prepack": "rm -rf dist && npx tsc",
"test": "NODE_ENV=test jest",
"lint": "eslint --config .eslintrc.json --ext .js,.ts ./",
"lint:fix": "eslint --fix --config .eslintrc.json --ext .js,.ts ./"
},
"author": "AutoCloud",
"license": "MPL-2.0",
"dependencies": {
"@graphql-tools/load-files": "^6.5.3",
"@graphql-tools/merge": "^8.2.1",
"chalk": "^4.1.1",
"date-fns": "^2.25.0",
"graphql": "^16.2.0",
"inquirer": "^8.1.2",
"jsonpath": "^1.1.1",
"lodash": "^4.17.21",
"ora": "^5.4.1"
},
"devDependencies": {
"@autocloud/eslint-config": "^0.1.0",
"@semantic-release/changelog": "^6.0.1",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^8.0.1",
"@semantic-release/npm": "^9.0.1",
"@types/jest": "^29.2.3",
"@types/node": "^16.4.12",
"@typescript-eslint/eslint-plugin": "^4.28.5",
"@typescript-eslint/parser": "^4.28.5",
"cuid": "^2.1.8",
"eslint": "^7.2.0",
"eslint-config-airbnb-base": "14.2.1",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-prettier": "^3.4.0",
"husky": "^4.3.0",
"jest": "^29.3.1",
"lint-staged": "^11.1.1",
"semantic-release": "^19.0.2",
"ts-jest": "^29.0.3",
"typescript": "^4.3.5"
},
"husky": {
"hooks": {
"pre-commit": "yarn lint-staged"
}
},
"lint-staged": {
"*.{ts,graphql,json}": [
"yarn lint:fix",
"git add --force"
]
},
"resolutions": {
"**/uri-js": "^3.0.1"
}
}