forked from fasttime/Polytype
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.37 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
{
"name": "polytype",
"version": "0.8.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 <ft@fasttime.org> (https://github.com/fasttime)",
"files": [
"global",
"lib",
"!.*"
],
"main": "lib/polytype.cjs",
"module": "lib/polytype.mjs",
"types": "lib/polytype-module.d.ts",
"directories": {
"lib": "lib",
"example": "example",
"test": "test"
},
"repository": {
"type": "git",
"url": "https://github.com/fasttime/Polytype.git"
},
"scripts": {
"build": "npm install && gulp",
"serve": "./serve.js",
"test": "test/node-spec-runner.js"
},
"devDependencies": {
"chai": "~4.2.0",
"gulp": "~4.0.2",
"gulp-fasttime-lint": "~0.20.0",
"gulp-rename": "~2.0.0",
"gulp-terser": "~1.2.0",
"handlebars": "~4.7.3",
"markdown-toc": "~1.2.0",
"mocha": "~7.0.1",
"mocha-bar": "~0.0.4",
"nyc": "~15.0.0",
"postrequire": "~0.1.1",
"rollup": "~1.31.0",
"rollup-plugin-cleanup": "~3.1.1",
"semver": "~7.1.2",
"typescript": "~3.7.5"
},
"engines": {
"node": ">=13.2.0"
}
}