-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.03 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
{
"name": "@momsfriendlydevco/chainable",
"version": "1.2.0",
"description": "Tiny, zero-dependency chainable object wrapper",
"scripts": {
"build": "esbuild --platform=browser --format=esm --bundle lib/chainable.js --outfile=dist/chainable.js --minify",
"lint": "eslint .",
"test": "mocha"
},
"keywords": [
"chainable",
"chain"
],
"type": "module",
"exports": {
".": "./lib/chainable.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/MomsFriendlyDevCo/chainable.git"
},
"author": "Matt Carter <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/MomsFriendlyDevCo/chainable/issues"
},
"homepage": "https://github.com/MomsFriendlyDevCo/chainable#readme",
"engineStrict": true,
"engines": {
"node": ">=18.17.1"
},
"devDependencies": {
"@momsfriendlydevco/eslint-config": "^2.0.4",
"chai": "^5.1.1",
"esbuild": "^0.23.1",
"eslint": "^9.9.1",
"jsdom": "^25.0.0",
"mitt": "^3.0.1",
"mocha": "^10.7.3"
}
}