-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
72 lines (72 loc) · 1.89 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
{
"name": "@bitbar/finka",
"version": "3.0.0",
"description": "Handy tool in nowadays JavaScript jungle",
"main": "dist/finka.js",
"types": "types/index.d.ts",
"scripts": {
"build": "rollup -c --bundleConfigAsCjs",
"test": "npx mocha --file test/_init.js --recursive test --require @babel/register",
"docs": "jsdoc -c jsdoc.json",
"lint": "eslint ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/bitbar/finka-js.git"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "public"
},
"keywords": [
"library",
"helper",
"tool",
"util",
"js",
"javascript",
"finka",
"finka-js",
"prototype"
],
"author": "Marek Sierociński (https://github.com/marverix)",
"contributors": [
"tpiechaczek (https://github.com/tpiechaczek)",
"Bartosz Trzos (https://github.com/Trzosoo)",
"Alberto Luis Fernandez Reyes (https://github.com/alberto-f)",
"ToniaR (https://github.com/ToniaR)",
"Toni (https://github.com/ToniVaakanainen)",
"gfduszynski (https://github.com/gfduszynski)"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/bitbar/finka-js/issues"
},
"homepage": "https://github.com/bitbar/finka-js#readme",
"devDependencies": {
"@babel/core": "^7.25.2",
"@babel/preset-env": "^7.25.3",
"@babel/register": "^7.24.6",
"@eslint/js": "^9.9.0",
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-commonjs": "^26.0.1",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-terser": "^0.4.4",
"chai": "^4.5.0",
"docdash": "^2.0.2",
"core-js": "^3.38.0",
"eslint": "^9.9.0",
"globals": "^15.9.0",
"husky": "^9.1.4",
"jsdoc": "^4.0.3",
"mocha": "^10.7.3",
"rollup": "^4.20.0",
"typescript-eslint": "^8.1.0"
},
"browserslist": [
"> 4%",
"Firefox ESR",
"not dead",
"ie 11"
]
}