-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
50 lines (50 loc) · 1020 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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
{
"name": "@alizurchik/ts-mixin",
"version": "1.0.2",
"description": "Mixin function that brings power of mixin to TypeScript without headache",
"main": "index.js",
"scripts": {
"test": "npm run build && ava",
"build": "tsc",
"preversion": "npm test",
"postversion": "git push && git push --tags"
},
"repository": {
"type": "git",
"url": "https://github.com/likerRr/ts-mixin"
},
"bugs": {
"url": "https://github.com/likerRr/ts-mixin/issues"
},
"keywords": [
"mixin",
"typescript",
"javascript",
"ts",
"composition",
"extend",
"inheritance"
],
"author": "Alexey Lizurchik <[email protected]> (http://likerrr.ru)",
"license": "MIT",
"dependencies": {},
"devDependencies": {
"ava": "^0.16.0",
"typescript": "^2.0.2"
},
"files": [
"index.js",
"index.d.ts"
],
"ava": {
"verbose": true,
"require": [
"babel-register"
],
"babel": {
"presets": [
"es2015"
]
}
}
}