Add github to funding options
[benchmarks-js.git] / package.json
1 {
2 "name": "benchmarks-js",
3 "version": "0.0.1",
4 "description": "JS code pattern benchmarks",
5 "engines": {
6 "node": ">=14.x"
7 },
8 "repository": {
9 "type": "git",
10 "url": "git://github.com/jerome-benoit/benchmarks-js.git"
11 },
12 "funding": [
13 {
14 "type": "patreon",
15 "url": "https://www.patreon.com/fraggle_"
16 },
17 {
18 "type": "github",
19 "url": "https://github.com/sponsors/jerome-benoit"
20 }
21 ],
22 "scripts": {
23 "preinstall": "npx only-allow pnpm",
24 "prepare": "node prepare.js",
25 "benchmark:busy-wait": "node busy-wait.js",
26 "benchmark:empty-array": "node empty-array.js",
27 "benchmark:deep-clone-object": "node deep-clone-object.js",
28 "benchmark:shallow-clone-object": "node shallow-clone-object.js",
29 "benchmark:is-empty-object": "node is-empty-object.js",
30 "benchmark:is-undefined": "node is-undefined.js",
31 "benchmark:quick-select": "node quick-select.js",
32 "benchmark:max": "node max.js",
33 "benchmark:promise-handling": "node promise-handling.js",
34 "benchmark:fibonacci": "node fibonacci.js",
35 "benchmark:random": "node random.js",
36 "benchmark:uuid-generator": "node uuid-generator.js",
37 "format": "prettier . --cache --write; standard . --fix",
38 "lint": "eslint . --cache",
39 "lint:fix": "eslint . --cache --fix",
40 "test": "echo \"Error: no test specified\" && exit 1"
41 },
42 "author": "jerome-benoit",
43 "license": "MIT",
44 "dependencies": {
45 "benny": "^3.7.1",
46 "just-clone": "^6.2.0",
47 "lodash": "^4.17.21",
48 "microtime": "^3.1.1",
49 "uuid": "^9.0.0"
50 },
51 "devDependencies": {
52 "eslint": "^8.37.0",
53 "eslint-config-standard": "^17.0.0",
54 "eslint-define-config": "^1.17.0",
55 "eslint-plugin-import": "^2.27.5",
56 "eslint-plugin-jsdoc": "^40.1.0",
57 "eslint-plugin-n": "^15.7.0",
58 "eslint-plugin-promise": "^6.1.1",
59 "husky": "^8.0.3",
60 "lint-staged": "^13.2.0",
61 "prettier": "^2.8.7",
62 "standard": "^17.0.0",
63 "typescript": "^5.0.3"
64 }
65 }