-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
110 lines (110 loc) · 3.09 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
{
"name": "polytype",
"version": "0.17.0",
"description": "Dynamic multiple inheritance for JavaScript and TypeScript. Without mixins.",
"keywords": [
"class",
"classes",
"es2020",
"inheritance",
"multiple-inheritance"
],
"homepage": "https://github.com/fasttime/Polytype",
"bugs": "https://github.com/fasttime/Polytype/issues",
"license": "ISC",
"author": "Francesco Trotta <[email protected]> (https://github.com/fasttime)",
"files": [
"global",
"lib",
"!.*"
],
"main": "lib/polytype.cjs",
"module": "lib/polytype.mjs",
"directories": {
"lib": "lib",
"example": "example",
"test": "test"
},
"repository": {
"type": "git",
"url": "https://github.com/fasttime/Polytype.git"
},
"scripts": {
"build": "npm install && gulp",
"lint": "gulp lint",
"release": "npm version -f -m \"Version %s\" --tag-version-prefix=",
"test": "test/node-spec-runner.mjs",
"test-serve": "test/serve.mjs",
"version": "gulp make-toc && git add changelog.md readme.md"
},
"devDependencies": {
"@origin-1/eslint-config": "latest",
"@rollup/plugin-terser": "latest",
"ansi-colors": "latest",
"c8js": "latest",
"chai": "4",
"eslint-formatter-compact": "latest",
"eslint-plugin-eslint-env": "latest",
"glob": "latest",
"gulp": "latest",
"gulp-eslint-new": "latest",
"handlebars": "latest",
"markdown-toc": "latest",
"mocha": "latest",
"mocha-bar": "latest",
"postrequire": "latest",
"rollup": "latest",
"rollup-plugin-cleanup": "latest",
"sync-readable": "latest",
"typescript": "latest",
"typescript_4.7": "npm:[email protected]",
"typescript_4.8": "npm:[email protected]",
"typescript_4.9": "npm:[email protected]",
"typescript_5.0": "npm:[email protected]",
"typescript_5.1": "npm:[email protected]",
"typescript_5.2": "npm:[email protected]",
"typescript_5.3": "npm:[email protected]",
"typescript_5.4": "npm:[email protected]",
"typescript_5.5": "npm:[email protected]",
"typescript_5.6": "npm:[email protected]"
},
"engines": {
"node": ">=16.0.0"
},
"exports": {
".": {
"types": "./lib/polytype-module.d.ts",
"import": "./lib/polytype.mjs",
"require": "./lib/polytype.cjs"
},
"./global": {
"types": "./lib/polytype-global.d.ts",
"default": "./lib/polytype.js"
},
"./lib/polytype.cjs": {
"types": "./lib/polytype-module.d.ts",
"default": "./lib/polytype.cjs"
},
"./lib/polytype.js": {
"types": "./lib/polytype-global.d.ts",
"default": "./lib/polytype.js"
},
"./lib/polytype.min.js": {
"types": "./lib/polytype-global.d.ts",
"default": "./lib/polytype.min.js"
},
"./lib/polytype.min.mjs": {
"types": "./lib/polytype-module.d.ts",
"default": "./lib/polytype.min.mjs"
},
"./lib/polytype.mjs": {
"types": "./lib/polytype-module.d.ts",
"default": "./lib/polytype.mjs"
},
"./package.json": "./package.json"
},
"imports": {
"#eslint-plugin-tstest": "./test/eslint-plugin-tstest.mjs"
},
"types": "lib/polytype-module.d.ts"
}