-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.76 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.76 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
{
"name": "@fr0st/core",
"version": "3.0.4",
"description": "Small, focused utility library for arrays, functions, math, objects, strings, and type checks.",
"keywords": [
"utilities",
"utility",
"esm",
"tree-shaking",
"zero-dependency",
"array",
"function",
"math",
"object",
"string",
"dom",
"type-check",
"testing"
],
"homepage": "https://github.com/elusivecodes/FrostCore",
"bugs": {
"url": "https://github.com/elusivecodes/FrostCore/issues",
"email": "elusivecodes@gmail.com"
},
"repository": {
"type": "git",
"url": "git+https://github.com/elusivecodes/FrostCore.git"
},
"license": "MIT",
"author": "Elusive <elusivecodes@gmail.com>",
"sideEffects": false,
"type": "module",
"exports": {
".": "./src/index.js"
},
"main": "src/index.js",
"jsdelivr": "dist/frost-core.min.js",
"unpkg": "dist/frost-core.min.js",
"files": [
"dist",
"LICENSE",
"README.md",
"src"
],
"scripts": {
"build": "npm run js-compile && npm run js-minify",
"js-compile": "rollup --config",
"js-lint": "eslint",
"js-minify": "terser --compress passes=2 --mangle --source-map \"content=dist/frost-core.js.map\" --output dist/frost-core.min.js dist/frost-core.js",
"test": "mocha \"test/**/*.test.js\""
},
"devDependencies": {
"@fr0st/eslint-config": "^3.0.0",
"eslint": "^10.1.0",
"mocha": "^11.7.5",
"rollup": "^4.60.0",
"terser": "^5.46.1"
},
"engines": {
"node": "^20.19.0 || ^22.13.0 || >=24"
},
"publishConfig": {
"access": "public"
}
}