-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
151 lines (151 loc) · 6.42 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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
{
"name": "mapping-tools",
"version": "0.0.0-ALPHA-UNSAFE-v6.0.1",
"license": "MIT",
"author": "LUXCIUM · (Benjamin Vincent Kasapoglu)",
"description": "The Mapping Tools package is designed to be user-friendly and easy to use, with clear documentation and examples. It is suitable for use in a wide range of applications, including data processing, data validation, and more.",
"main": "./lib/index.js",
"types": "./lib/typings/index.d.ts",
"exports": {
".": "./lib/index.js",
"./functions": "./lib/functions/index.js",
"./helpers": "./lib/helpers/index.js",
"./tools": "./lib/helpers/tools/index.js",
"./assertions": "./lib/helpers/assertions/index.js",
"./helpers/tools": "./lib/helpers/tools/index.js",
"./helpers/assertions": "./lib/helpers/assertions/index.js",
"./constants": "./lib/constants.js",
"./types": "./lib/types/index.js",
"./chain": "./lib/classes/chain.js",
"./core": "./lib/functions/core/index.js",
"./package.json": "./package.json"
},
"keywords": [
"itereation",
"mapping",
"generator",
"asyncgenerator",
"tools",
"utils",
"helpers"
],
"scripts": {
"build": "yarn base:build",
"build:dist": "scripts/build-dist.sh",
"install": "pwd; yarn build || exit 13; pwd",
"install:": "yarn base:install",
"rebuild": "yarn base:rm:lib; yarn base:build",
"test:": "yarn base:test",
"lint": " eslint ./src",
"lint:fix": "npx eslint -v; npx eslint ./src --fix",
"test": "jest --all --coverage=false --config='jest.config.json'",
"test:quick": "jest --onlyChanged --coverage=false --config='jest.config.json'",
"test:full": "yarn test:clear; jest --coverage --all --config='jest.config.json'",
"test:clear": "jest --clearCache",
"coverage": "jest --coverage --all --config='jest.config.json'",
"coverage:": "jest --coverage src",
"build:full": "yarn test && yarn rebuild && yarn build:api",
"dist:full": "rm -r dist; yarn build:full && yarn cp:dist:dirs; yarn clean:dist; yarn cp:dist",
"build:api": "yarn base:build:api; yarn build:docs",
"clean:dist": "yarn base:rm:dist:lib; yarn base:rm:dist:src; yarn base:clean:dist",
"base:test": "jest --config='jest.config.json'",
"base:build": "bash scripts/build.sh",
"base:build:api": "api-extractor run --local",
"build:docs": "typedoc --options config/typedoc.json",
"base:cp:dist:src": "cp -r src dist",
"base:cp:dist:lib": "cp -r lib dist",
"base:rm:lib": "rm -r ./lib",
"cp:dist:dirs": "yarn base:cp:dist:lib; yarn base:cp:dist:src",
"cp:dist": "yarn cp:package; yarn cp:readme; yarn cp:license; yarn cp:editorconf; yarn cp:prettierrc; yarn cp:tsconfig;",
"cp:package": "cp package.json dist",
"cp:readme": "cp README.md dist",
"cp:license": "cp LICENSE dist",
"cp:editorconf": "cp ../../.editorconfig dist/.editorconfig",
"cp:prettierrc": "cp ../../.prettierrc.cjs dist/.prettierrc.cjs",
"cp:tsconfig": "cp ../typescript/tsconfig.json dist",
"base:rm:dist:src": "rm -r dist/src/*test*",
"base:rm:dist:lib": "rm -r dist/lib/*test* dist/lib/typings/*test*",
"base:clean:dist": "rm -r dist/lib/performance dist/lib/ts-out-info.lib",
"base:rush:update": "rush update",
"open:docs": "live-server $(pwd)/dist/docs --open=modules.html --no-browser --watch --port=8081 &",
"reload:docs": "yarn build:docs; live-server dist/docs --open=modules.html --no-browser --watch --port=8081 &",
"open:coverage": "http-server dist/coverage/lcov-report -o -c-1 -p 8082 &",
"reload:coverage": "yarn coverage; http-server dist/coverage/lcov-report -o -c-1 -p 8082 &",
"base:install": "echo unimplemented && exit 0",
"::build:dist": "yarn build:all; yarn cp:dist",
"::build:all": "yarn base:test && yarn build && yarn build:api",
"::rebuild:all": "yarn rush:update; yarn test && yarn build && yarn build:api",
"::rebuild:quick": "yarn rm:lib; yarn build",
":": "# :"
},
"devDependencies": {
"@babel/core": "~7.22.5",
"@babel/plugin-syntax-flow": "~7.22.5",
"@babel/plugin-transform-react-jsx": "~7.22.5",
"@babel/plugin-transform-typescript": "~7.22.5",
"@jest/globals": "~29.5.0",
"@microsoft/api-extractor": "~7.36.0",
"@microsoft/rush": "~5.100.1",
"@microsoft/tsdoc": "~0.14.2",
"@rushstack/eslint-config": "~3.3.2",
"@rushstack/eslint-plugin-security": "~0.6.0",
"@rushstack/eslint-plugin": "~0.12.0",
"@rushstack/heft-jest-plugin": "~0.10.6",
"@rushstack/heft": "~0.63.4",
"@types/cheerio": "~0.22.31",
"@types/eslint-config-prettier": "~6.11.0",
"@types/eslint-plugin-prettier": "~3.1.0",
"@types/eslint": "~8.40.2",
"@types/heft-jest": "~1.0.3",
"@types/marked": "~5.0.0",
"@types/node": "18",
"@types/prettier": "~2.7.3",
"@typescript-eslint/eslint-plugin": "~6.14.0",
"@typescript-eslint/parser": "~6.14.0",
"cheerio": "~1.0.0-rc.12",
"eslint-config-next": "~14.1.0",
"eslint-config-prettier": "~9.1.0",
"eslint-config-react-app": "~7.0.1",
"eslint-import-resolver-typescript": "~3.6.1",
"eslint-plugin-import": "~2.29.1",
"eslint-plugin-jsdoc": "~46.9.1",
"eslint-plugin-jsonc": "~2.11.1",
"eslint-plugin-prettier": "~5.0.1",
"eslint-plugin-promise": "~6.1.1",
"eslint-plugin-react-hooks": "~4.6.0",
"eslint-plugin-react": "~7.33.2",
"eslint-plugin-simple-import-sort": "~10.0.0",
"eslint-plugin-tsdoc": "~0.2.17",
"eslint-plugin-unicorn": "~49.0.0",
"eslint-webpack-plugin": "~4.0.1",
"eslint": "~8.56.0",
"jest": "~29.7.0",
"marked": "~5.1.0",
"nodemon": "~3.0.2",
"prettier": "~3.2.4",
"ts-jest": "~29.1.1",
"ts-loader": "~9.4.4",
"ts-node": "~10.9.2",
"tsconfig-paths": "~4.2.0",
"typedoc-plugin-carbon-ads": "~1.6.0",
"typedoc-plugin-clarity": "~1.6.0",
"typedoc-plugin-coverage": "~2.2.0",
"typedoc-plugin-djs-links": "~2.0.0",
"typedoc-plugin-external-link": "~2.1.0",
"typedoc-plugin-extras": "~3.0.0",
"typedoc-plugin-google-ads": "~1.6.0",
"typedoc-plugin-markdown": "~3.15.3",
"typedoc-plugin-mdn-links": "~3.0.3",
"typedoc-plugin-missing-exports": "~2.1.0",
"typedoc-plugin-particles": "~1.4.0",
"typedoc-plugin-rename-defaults": "~0.6.5",
"typedoc-plugin-replace-text": "~3.2.0",
"typedoc-plugin-zod": "~1.1.0",
"typedoc": "~0.25.4",
"typescript": "~5.3.3",
"webpack": "~5.88.1",
"tslib": "~2.6.0",
"@types/jest": "~29.5.2",
"vitest": "~0.31.1"
}
}