forked from lekhmanrus/typescript-mix
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
30 lines (30 loc) · 924 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
{
"name": "typescript-mix",
"version": "3.1.3",
"description": "A tweaked implementation of TypeScript's default applyMixins(...) idea using ES7 decorators",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"scripts": {
"test": "cross-env NODE_ENV=development mocha -r C:\\Users\\Michael\\AppData\\Roaming\\npm\\node_modules\\ts-node\\register test/**/*.test.ts --reporter=\"min\" --watch --watch-extensions ts"
},
"keywords": [
"traits in typescript",
"use in typescript",
"TypeScript Mixins",
"Mixins",
"applyMixins",
"mix",
"multiple inheritance in TypeScript"
],
"author": "michaelolof",
"repository": "git+https://github.com/michaelolof/typescript-mix.git",
"license": "ISC",
"dependencies": {},
"devDependencies": {
"@types/chai": "^4.1.3",
"@types/mocha": "^5.2.0",
"chai": "^4.1.2",
"cross-env": "^5.1.6",
"mocha": "^5.1.1"
}
}