-
-
Notifications
You must be signed in to change notification settings - Fork 88
Expand file tree
/
Copy pathpackage.json
More file actions
175 lines (175 loc) · 5.29 KB
/
Copy pathpackage.json
File metadata and controls
175 lines (175 loc) · 5.29 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
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
{
"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": "6.2.0",
"homepage": "https://github.com/char0n/ramda-adjunct",
"license": "BSD-3-Clause",
"repository": {
"type": "git",
"url": "git+https://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": "vladimir.gorej@gmail.com",
"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": "trapcodien@gmail.com",
"url": "https://github.com/guillaumearm"
},
{
"name": "Alexander Zaika",
"email": "js636f@gmail.com",
"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": "jsdoc -c jsdoc.json && node ./scripts/jsdoc-inject-dist.cjs",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"changelog": "conventional-changelog -p angular -i ./CHANGELOG.md -s",
"test": "mocha",
"test:web": "testem ci",
"test:ramda": "npm i --no-save ramda@0.32.0 && npm test",
"test:types": "tsd",
"test:bundle-create": "webpack --config webpack.config-test.web.cjs --progress",
"test:bundle-clean": "rimraf tmp-test-bundle.js",
"coverage": "c8 mocha",
"build": "npm run build:es && npm run build:commonjs && npm run build:umd",
"build:es": "cross-env BABEL_ENV=es babel src --out-dir es",
"build:commonjs": "cross-env BABEL_ENV=commonjs babel src --out-dir lib && echo '{\"type\": \"commonjs\"}' > ./lib/package.json",
"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",
"prepare": "husky"
},
"peerDependencies": {
"ramda": ">= 0.32.0"
},
"devDependencies": {
"@babel/cli": "7.29.7",
"@babel/core": "=7.29.7",
"@babel/plugin-transform-modules-commonjs": "=7.29.7",
"@babel/preset-env": "=7.29.7",
"@babel/register": "7.29.7",
"@commitlint/cli": "=20.4.1",
"@commitlint/config-conventional": "=20.4.1",
"@eslint/js": "^10.0.1",
"@typescript-eslint/eslint-plugin": "^8.60.1",
"@typescript-eslint/parser": "^8.60.1",
"assert": "=2.1.0",
"babel-loader": "=10.1.1",
"babel-plugin-annotate-pure-calls": "0.5.0",
"c8": "10.1.3",
"chai": "6.2.2",
"conventional-changelog-cli": "5.0.0",
"core-js": "=3.49.0",
"cross-env": "10.1.0",
"docdash": "git+https://github.com/char0n/docdash.git#534b44382138a55dd8d93642c979e51e46471185",
"eslint": "^10.0.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-import-x": "^4.16.2",
"eslint-plugin-mocha": "^11.2.0",
"eslint-plugin-prettier": "^5.5.4",
"eslint-plugin-ramda": "^2.5.1",
"fantasy-land": "5.0.1",
"fantasy-laws": "=2.0.1",
"folktale": "=2.3.2",
"glob": "=13.0.6",
"husky": "9.1.7",
"jsdoc": "=4.0.5",
"jsverify": "0.8.4",
"lint-staged": "17.0.7",
"mocha": "=11.7.6",
"mocha-junit-reporter": "2.2.1",
"mocha-multi-reporters": "1.5.1",
"monet": "0.9.3",
"prettier": "=3.8.4",
"process": "=0.11.10",
"ramda": "=0.32.0",
"ramda-fantasy": "=0.8.0",
"regenerator-runtime": "=0.14.1",
"rimraf": "6.1.3",
"sanctuary-show": "3.0.0",
"sinon": "=21.0.1",
"taffydb": "npm:@jsdoc/salty@0.2.9",
"terser-webpack-plugin": "5.6.1",
"testem": "=3.20.1",
"tsd": "0.33.0",
"typescript": "=5.9.3",
"webpack": "=5.107.2",
"webpack-cli": "7.0.3"
},
"tsd": {
"directory": "types/test",
"typingsFile": "types/index.d.ts",
"compilerOptions": {
"strict": true,
"baseUrl": ".",
"paths": {
"ramda-adjunct": [
"types/index.d.ts"
]
}
}
},
"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"
}
}