-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
85 lines (85 loc) · 3.1 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "@mauna/sdk",
"version": "0.2.21",
"description": "Code generated from Mauna API schema for CLI, SDK etc",
"main": "./cjs/index.js",
"module": "./esm/index.js",
"type": "commonjs",
"exports": {
"./esm": "./esm/index.js",
".": "./cjs/index.js"
},
"bin": {
"mauna-playground": "./bin/playground.js"
},
"files": [
"index.js",
".replrc.js",
"bin/",
"cjs/",
"esm/"
],
"scripts": {
"load-test": "npm config set script-shell `which bash`; seq ${NUM:-100} | parallel --lb -N0 -j $(bc -l <<<\"`nproc --all`*4\") 'npm test'",
"lint": "eslint . --fix",
"test": "validEnv MAUNA_API_KEY MAUNA_DEVELOPER_ID && jest --passWithNoTests",
"repl": "validEnv MAUNA_API_KEY MAUNA_DEVELOPER_ID && local-repl",
"version-bump": "git diff-index --quiet HEAD -- || json-bump package.json",
"codegen": "graphql-codegen --config cjs/codegen.js",
"tsc": "tsc && tsc -p tsconfig-cjs.json",
"docs": "typedoc src/index.ts --out ./docs",
"prepublishOnly": "[ -z $SKIP_PREPUBLISH ] && npm test || exit 0",
"prune-symlinks": "cd src/documents && for m in $(find . -xtype l); do rm $m; done",
"add-symlinks": "cd src/documents && for m in ../../mauna_graphql/common/*.graphql ; do ln -s $m \"${m##*/}\"; done",
"build": "npm run codegen && npm run tsc && npm run lint && npm run docs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mauna-ai/sdk.git"
},
"author": "[email protected]",
"license": "ISC",
"bugs": {
"url": "https://github.com/mauna-ai/sdk/issues"
},
"homepage": "https://github.com/mauna-ai/sdk#readme",
"devDependencies": {
"@graphql-codegen/cli": "1.21.1",
"@graphql-codegen/time": "^2.0.2",
"@graphql-codegen/typescript": "1.21.0",
"@graphql-codegen/typescript-graphql-request": "^3.0.2",
"@graphql-codegen/typescript-oclif": "^1.17.9",
"@graphql-codegen/typescript-operations": "^1.17.14",
"@types/isomorphic-fetch": "^0.0.35",
"@types/jest": "^26.0.22",
"@types/lodash": "^4.14.168",
"@types/proper-lockfile": "^4.1.1",
"@typescript-eslint/eslint-plugin": "^4.20.0",
"@typescript-eslint/parser": "^4.20.0",
"chalk": "^4.1.0",
"enhanced-resolve": "^5.7.0",
"eslint": "^7.23.0",
"eslint-plugin-jest": "^24.3.2",
"jest": "^26.6.3",
"jest-environment-node": "^26.6.2",
"json-bump": "^1.0.2",
"lodash": "^4.17.21",
"prettier": "2.2.1",
"typedoc": "^0.20.28",
"typescript": "^4.1.x",
"valid-env": "^1.1.1"
},
"dependencies": {
"bitwise": "^2.1.0",
"graphql": "^15.5.0",
"graphql-lodash": "^1.3.4",
"graphql-request": "^3.4.0",
"graphql-tag": "^2.11.0",
"isomorphic-fetch": "^3.0.0",
"local-repl": "^4.0.0",
"moment": "^2.29.1",
"polly-js": "^1.8.0",
"proper-lockfile": "^4.1.2",
"reason-dataloader": "^0.1.1"
}
}