-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 912 Bytes
/
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
{
"name": "@bellisario/icecube",
"version": "1.0.0",
"description": "Create objects that can be freezed and un-freezed",
"license": "MIT",
"repository": "Bellisario/IceCube",
"homepage": "https://github.com/Bellisario/IceCube#readme",
"funding": "https://gitbub.com/sponsors/Bellisario",
"author": "Giorgio Bellisario",
"type": "module",
"exports": "./index.js",
"scripts": {
"test": "npm run lint && node ./test.js",
"lint": "eslint .",
"lint:fix": "eslint . --fix"
},
"files": [
"index.js",
"index.d.ts"
],
"keywords": [
"object",
"freeze",
"un-freeze"
],
"devDependencies": {
"eslint": "^8.20.0",
"supertape": "^7.6.0"
},
"bugs": {
"url": "https://github.com/Bellisario/IceCube/issues"
},
"engines": {
"node": ">=14.0.0"
}
}