-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 911 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": "fusium-js",
"version": "0.3.1",
"author": "Magnus Meseck",
"license": "MIT",
"description": "A tiny class-based composition/mixin library",
"repository": {
"type": "git",
"url": "https://github.com/elemental-mind/fusium.git"
},
"homepage": "https://github.com/elemental-mind/fusium#readme",
"keywords": [
"typescript",
"composition",
"composable",
"mixin",
"mixins",
"multiple inheritance",
"inheritance",
"ES6 classes",
"classes"
],
"scripts": {
"dry-update": "tsc",
"patch": "tsc && npm version patch && git push && npm publish",
"release": "tsc && npm version minor && git push && npm publish",
"test": "unitium-tsx source"
},
"devDependencies": {
"@types/node": "^20.10.4",
"unitium": "^0.3.2"
},
"type": "module",
"exports": "./distribution/fusium.js",
"types": "./distribution/fusium.d.ts"
}