-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.23 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.23 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
{
"name": "@iceylan/type.js",
"version": "1.2.0",
"description": "Allows to define types, abstract types, interfaces and traits. Types can be extends by other types, uses traits and implements interfaces in multiple manner. Also, interfaces and traits can extends their kinds.",
"main": "main.js",
"type": "module",
"scripts": {
"test": "mocha --exit",
"coverage": "c8 npm test",
"publish": "npm publish --access public",
"release": "standard-version",
"dev": "vite",
"build": "vite build",
"preview": "vite preview"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ismailceylan/type.js.git"
},
"keywords": [
"type",
"types",
"oop",
"object oriented",
"javascript",
"js",
"es6",
"mixins",
"trait",
"interface",
"inheritance",
"multiple-inheritance",
"interface-inheritance",
"multiple-interfaces",
"multiple-traits",
"trait-inheritance"
],
"author": "Ismail Ceylan",
"license": "MIT",
"bugs": {
"url": "https://github.com/ismailceylan/type.js/issues"
},
"homepage": "https://github.com/ismailceylan/type.js#readme",
"devDependencies": {
"c8": "^8.0.1",
"mocha": "^10.2.0",
"vite": "^5.0.10"
}
}