-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 2.17 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
{
"name": "@nemtus/symbol-sdk-openapi-generator-typescript-axios",
"version": "0.1.0",
"description": "Symbol SDK for TypeScript with OpenAPI Generator typescript-axios",
"main": "./cjs/index.js",
"module": "./esm/index.js",
"scripts": {
"openapi:set:version": "npx @openapitools/openapi-generator-cli version-manager set 6.0.0",
"openapi:generate": "npx @openapitools/openapi-generator-cli generate -i ./symbol-openapi/_build/openapi3.yml -g typescript-axios -o ./src/api -c ./openapi-generator-config.yml",
"build": "npm run build:cjs && npm run build:esm && npm run build:cdn && node bundle",
"build:cjs": "node pre-build-cjs && tsc --build --clean && tsc --target es5 --module commonjs && node post-build-cjs",
"build:esm": "node pre-build-esm && tsc --build --clean && tsc --target esnext --module esnext && node post-build-esm",
"build:cdn": "node pre-build-cdn && tsc --build --clean && tsc --target esnext --module esnext && webpack && node post-build-cdn",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nemtus/symbol-sdk-openapi-generator-typescript-axios.git"
},
"keywords": [
"blockchain",
"symbol",
"sdk",
"typescript",
"axios"
],
"author": "nemtus",
"license": "MIT",
"bugs": {
"url": "https://github.com/nemtus/symbol-sdk-openapi-generator-typescript-axios/issues"
},
"homepage": "https://github.com/nemtus/symbol-sdk-openapi-generator-typescript-axios#readme",
"devDependencies": {
"@openapitools/openapi-generator-cli": "^2.5.1",
"@types/jest": "^28.1.6",
"@typescript-eslint/eslint-plugin": "^5.31.0",
"@typescript-eslint/parser": "^5.31.0",
"eslint": "^8.21.0",
"eslint-config-prettier": "^8.5.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^26.7.0",
"eslint-plugin-n": "^15.2.4",
"eslint-plugin-promise": "^6.0.0",
"fs-extra": "^10.1.0",
"jest": "^28.1.3",
"prettier": "^2.7.1",
"ts-jest": "^28.0.7",
"ts-loader": "^9.3.1",
"typescript": "^4.7.4",
"webpack": "^5.74.0",
"webpack-cli": "^4.10.0"
},
"dependencies": {
"axios": "^0.27.2"
}
}