-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 867 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 867 Bytes
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
{
"name": "@preterer/mixin",
"version": "1.0.1",
"description": "Typescript extendable mixin approach",
"main": "dist/index.js",
"scripts": {
"build": "tsc --declaration",
"test": "jest --coverage",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/preterer/mixin.git"
},
"keywords": [
"mixin",
"typescript"
],
"author": "Michał Baranowski",
"license": "ISC",
"bugs": {
"url": "https://github.com/preterer/mixin/issues"
},
"homepage": "https://github.com/preterer/mixin#readme",
"dependencies": {},
"devDependencies": {
"@types/jest": "^28.1.6",
"@types/node": "^18.6.1",
"jest": "^28.1.3",
"prettier": "^2.7.1",
"reflect-metadata": "^0.1.13",
"ts-jest": "^28.0.7",
"ts-node": "^10.9.1",
"typescript": "^4.7.4"
}
}