-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
109 lines (109 loc) · 2.69 KB
/
package.json
File metadata and controls
109 lines (109 loc) · 2.69 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
{
"name": "@pregalaxyer/nemo",
"version": "1.1.2",
"description": "swagger typescript codegen",
"main": "lib/index.js",
"module": "esm/index.js",
"bin": {
"nemo": "./bin/index.js"
},
"dependencies": {
"all": "^0.0.0",
"chalk": "^4.1.1",
"fs-extra": "^10.0.0",
"mustache": "^4.2.0",
"node-fetch": "^2.6.1",
"ora": "^5.4.1",
"query-string": "^7.0.0",
"rimraf": "^3.0.2",
"typescript": "^4.2.4",
"yargs": "^17.2.1"
},
"scripts": {
"commit": "cz",
"build": "rollup -c rollup.config.js",
"test": "jest",
"test:cov": "jest --coverage",
"codecov": "codecov --token=6c1c080c-00f9-433a-9103-0eb1fb1cd078",
"release": "pnpm build && pnpm changelog && pnpm publish --access=public",
"publish": "pnpm build && pnpm changelog && pnpm publish --access=public",
"lint": "pnpm prettier --write src/*",
"changelog": "conventional-changelog -i CHANGELOG.md -s -r 0 && git add CHANGELOG.md "
},
"author": "dylan",
"devDependencies": {
"@babel/core": "^7.13.14",
"@babel/preset-env": "^7.13.12",
"@babel/preset-typescript": "^7.13.0",
"@rollup/plugin-commonjs": "^18.0.0",
"@rollup/plugin-node-resolve": "^11.2.1",
"@rollup/plugin-typescript": "^8.2.1",
"@types/jest": "^26.0.22",
"@types/mustache": "^4.1.1",
"@types/node": "^14.14.2",
"babel-jest": "^26.6.3",
"codecov": "^3.8.1",
"commitizen": "^4.2.4",
"cz-conventional-changelog": "^3.3.0",
"jest": "^27.4.7",
"msw": "^0.28.2",
"prettier": "^2.5.1",
"rollup": "^2.45.2",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-terser": "^7.0.2",
"tslib": "^2.2.0"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"lint-staged": {
"{src,test}/**/*.ts": [
"prettier --write",
"git add"
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"jest": {
"moduleNameMapper": {
"\\.mustache$": "<rootDir>/src/templates/.mock/index.js"
},
"testPathIgnorePatterns": [
"<rootDir>/lib",
".test_folder"
],
"coveragePathIgnorePatterns": [
"/src/templates/",
"/src/core/utils/index.ts",
"/esm/"
],
"collectCoverage": true
},
"directories": {
"lib": "lib",
"test": "tests"
},
"repository": {
"type": "git",
"url": "https://github.com/pregalaxyer/nemo.git"
},
"keywords": [
"nemo",
"typescript",
"swagger",
"codegen",
"generator",
"openapi",
"pregalaxyer"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/pregalaxyer/nemo/issues"
},
"homepage": "https://github.com/pregalaxyer/nemo#readme"
}