-
-
Notifications
You must be signed in to change notification settings - Fork 87
/
package.json
198 lines (198 loc) · 6.31 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
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
{
"name": "ramda-adjunct",
"description": "Ramda Adjunct is the most popular and most comprehensive set of utilities for use with Ramda, providing a variety of useful, well tested functions with excellent documentation.",
"keywords": [
"ramda",
"utils",
"utilities",
"toolkit",
"extensions",
"addons",
"adjunct",
"recipes",
"extras",
"cookbook",
"functional"
],
"version": "5.1.1",
"homepage": "https://github.com/char0n/ramda-adjunct",
"license": "BSD-3-Clause",
"repository": {
"type": "git",
"url": "git://github.com/char0n/ramda-adjunct.git"
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/ramda-adjunct"
},
"engines": {
"node": ">=0.10.3"
},
"author": {
"name": "Vladimir Gorej",
"email": "[email protected]",
"url": "https://www.linkedin.com/in/vladimirgorej/"
},
"contributors": [
{
"name": "Sergey Homa",
"url": "https://github.com/srghma"
},
{
"name": "Pedr Browne",
"url": "https://github.com/Undistraction"
},
{
"name": "Rocky Madden",
"url": "https://github.com/rockymadden"
},
{
"name": "Guillaume ARM",
"email": "[email protected]",
"url": "https://github.com/guillaumearm"
},
{
"name": "Alexander Zaika",
"email": "[email protected]",
"url": "https://github.com/js636f"
}
],
"sideEffects": false,
"type": "module",
"main": "./lib/index.js",
"module": "./es/index.js",
"jsnext:main": "./es/index.js",
"unpkg": "./dist/RA.web.standalone.min.js",
"jsdelivr": "./dist/RA.web.standalone.min.js",
"types": "types/index.d.ts",
"exports": {
".": {
"import": "./es/index.js",
"require": "./lib/index.js",
"types": "./types/index.d.ts"
},
"./es/*": "./es/*.js",
"./lib/*": "./lib/*.js",
"./dist/*": "./dist/*"
},
"scripts": {
"docs": "better-npm-run docs",
"lint": "better-npm-run lint",
"lint:fix": "better-npm-run lint:fix",
"changelog": "better-npm-run changelog",
"test": "mocha",
"test:web": "better-npm-run test:web",
"test:ramda": "bnr test:ramda",
"test:types": "eslint --no-eslintrc --no-ignore -c ./types/dtslint.eslint.cjs ./types/test/*.ts",
"test:bundle-create": "better-npm-run test:bundle-create",
"test:bundle-clean": "better-npm-run test:bundle-clean",
"coverage": "better-npm-run coverage",
"build": "better-npm-run build",
"build:es": "better-npm-run build:es",
"build:commonjs": "better-npm-run build:commonjs",
"build:umd": "better-npm-run build:umd",
"prepublishOnly": "better-npm-run prepublishOnly",
"clean": "better-npm-run clean",
"prepare": "husky"
},
"betterScripts": {
"docs": "jsdoc -c jsdoc.json && node ./scripts/jsdoc-inject-dist.cjs",
"lint": "eslint ./ && eslint --no-ignore --no-eslintrc -c ./types/.eslintrc.cjs ./types/test/**/*.ts",
"lint:fix": "eslint --fix ./ && eslint --no-ignore --no-eslintrc --fix -c ./types/.eslintrc.cjs ./types/test/**/*.ts",
"changelog": "conventional-changelog -p angular -i ./CHANGELOG.md -s",
"test:web": "testem ci",
"test:ramda": "bnr test:ramda0.30.0",
"test:ramda0.30.0": "npm install [email protected] && npm test",
"test:bundle-create": "webpack --config webpack.config-test.web.cjs --progress",
"test:bundle-clean": "rimraf tmp-test-bundle.js",
"coverage": {
"command": "nyc mocha",
"env": {
"BABEL_ENV": "coverage"
}
},
"build": "npm run build:es && npm run build:commonjs && npm run build:umd",
"build:es": {
"command": "babel src --out-dir es",
"env": {
"BABEL_ENV": "es"
}
},
"build:commonjs": {
"command": "babel src --out-dir lib && echo '{\"type\": \"commonjs\"}' > ./lib/package.json",
"env": {
"BABEL_ENV": "commonjs"
}
},
"build:umd": "webpack --config webpack.config.cjs --progress && echo '{\"type\": \"commonjs\"}' > ./dist/package.json",
"prepublishOnly": "npm run clean && npm run lint && npm run test && npm run build && npm run docs",
"clean": "rimraf .nyc_output .tmp docs coverage tmp-test-bundle.js dist lib es"
},
"peerDependencies": {
"ramda": ">= 0.30.0"
},
"devDependencies": {
"@babel/cli": "7.25.9",
"@babel/core": "=7.26.0",
"@babel/plugin-transform-modules-commonjs": "=7.25.9",
"@babel/preset-env": "=7.26.0",
"@babel/register": "7.25.9",
"@commitlint/cli": "=19.6.0",
"@commitlint/config-conventional": "=19.6.0",
"@typescript-eslint/eslint-plugin": "=7.18.0",
"@typescript-eslint/parser": "=7.18.0",
"assert": "=2.1.0",
"babel-loader": "=9.2.1",
"babel-plugin-annotate-pure-calls": "0.4.0",
"babel-plugin-istanbul": "7.0.0",
"better-npm-run": "0.1.1",
"chai": "5.1.2",
"codecov": "3.8.3",
"core-js": "=3.39.0",
"conventional-changelog-cli": "5.0.0",
"docdash": "git+https://github.com/char0n/docdash.git#534b44382138a55dd8d93642c979e51e46471185",
"eslint": "=8.57.1",
"eslint-config-airbnb-base": "=15.0.0",
"eslint-config-prettier": "=9.1.0",
"eslint-plugin-dtslint": "=3.0.2",
"eslint-plugin-import": "=2.31.0",
"eslint-plugin-mocha": "=10.5.0",
"eslint-plugin-prettier": "5.2.1",
"eslint-plugin-ramda": "2.5.1",
"fantasy-land": "5.0.1",
"fantasy-laws": "=2.0.1",
"folktale": "=2.3.2",
"glob": "=11.0.0",
"husky": "9.1.7",
"istanbul": "=0.4.5",
"jsdoc": "=4.0.4",
"jsverify": "0.8.4",
"lint-staged": "15.2.10",
"mocha": "=10.8.2",
"mocha-junit-reporter": "2.2.1",
"mocha-multi-reporters": "1.5.1",
"monet": "0.9.3",
"nyc": "17.1.0",
"prettier": "=3.4.1",
"process": "=0.11.10",
"ramda": "=0.30.1",
"ramda-fantasy": "=0.8.0",
"regenerator-runtime": "=0.14.1",
"rimraf": "6.0.1",
"sanctuary-show": "3.0.0",
"sinon": "=18.0.1",
"terser-webpack-plugin": "5.3.10",
"testem": "=3.15.2",
"typescript": "=5.7.2",
"webpack": "=5.97.0",
"webpack-cli": "5.1.4",
"taffydb": "npm:@jsdoc/[email protected]"
},
"browserslist": "> 0.25%, ie 10, ie 11, not op_mini all",
"tonicExampleFilename": "tonicExample.js",
"collective": {
"type": "opencollective",
"url": "https://opencollective.com/ramda-adjunct",
"logo": "https://opencollective.com/ramda-adjunct/logo.txt"
}
}