source: node_modules/ts-mixer/package.json

main
Last change on this file was d24f17c, checked in by Aleksandar Panovski <apano77@…>, 15 months ago

Initial commit

  • Property mode set to 100644
File size: 1.7 KB
Line 
1{
2 "name": "ts-mixer",
3 "version": "6.0.3",
4 "description": "A very small TypeScript library that provides tolerable Mixin functionality.",
5 "main": "dist/cjs/index.js",
6 "module": "dist/esm/index.js",
7 "browser": "dist/esm/index.js",
8 "unpkg": "dist/esm/index.min.js",
9 "types": "dist/types/index.d.ts",
10 "files": [
11 "dist"
12 ],
13 "scripts": {
14 "prebuild": "yarn clean",
15 "build": "rollup -c && tsc",
16 "clean": "rimraf dist",
17 "lint": "eslint src/**/*.ts",
18 "test": "nyc mocha",
19 "codegen": "node ./codegen.js",
20 "release": "standard-version"
21 },
22 "devDependencies": {
23 "@commitlint/cli": "^12.1.4",
24 "@commitlint/config-conventional": "^12.1.4",
25 "@rollup/plugin-typescript": "^8.2.1",
26 "@types/chai": "^4.2.19",
27 "@types/mocha": "^8.2.2",
28 "@types/node": "^15.12.4",
29 "@types/sinon": "^10.0.2",
30 "@typescript-eslint/parser": "^4.27.0",
31 "chai": "^4.3.4",
32 "class-validator": "^0.13.1",
33 "coveralls": "^3.1.0",
34 "eslint": "^7.29.0",
35 "husky": "^4.2.5",
36 "js-yaml": "^4.1.0",
37 "mocha": "^9.0.1",
38 "nyc": "14.1.1",
39 "rimraf": "^3.0.2",
40 "rollup": "^2.52.1",
41 "rollup-plugin-terser": "^7.0.2",
42 "sinon": "^11.1.1",
43 "standard-version": "^9.3.0",
44 "ts-node": "^10.0.0",
45 "tslib": "^2.3.0",
46 "typescript": "^4.3.4",
47 "yarn-add-no-save": "^1.0.3"
48 },
49 "homepage": "https://github.com/tannerntannern/ts-mixer#readme",
50 "repository": {
51 "type": "git",
52 "url": "git+https://github.com/tannerntannern/ts-mixer.git"
53 },
54 "keywords": [
55 "typescript",
56 "mixin",
57 "mixins",
58 "multiple inheritance",
59 "mixin classes"
60 ],
61 "author": "Tanner Nielsen",
62 "license": "MIT"
63}
Note: See TracBrowser for help on using the repository browser.