-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.24 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
{
"name": "@lsagetlethias/tstrait",
"version": "2.0.2",
"description": "Trait is better than mixin",
"main": "trait.js",
"types": "index.d.ts",
"repository": "[email protected]:lsagetlethias/tstrait.git",
"homepage": "https://github.com/lsagetlethias/tstrait",
"bugs": {
"url": "https://github.com/lsagetlethias/tstrait/issues"
},
"author": "Lilian Saget-Lethias <[email protected]>",
"license": "MIT",
"scripts": {
"test": "jest",
"lint": "eslint trait.ts",
"build": "rimraf trait.js* && tsc -d trait.ts",
"start": "ts-node example.ts"
},
"publishConfig": {
"access": "public"
},
"files": [
"UPGRADE*",
"CHANGELOG*",
"index.d.ts",
"trait.d.ts",
"trait.js"
],
"devDependencies": {
"@lsagetlethias/eslint-config": "^1.0.0",
"@types/jest": "^24.0.11",
"@types/node": "^10.11.3",
"@types/webpack": "^4.1.3",
"@typescript-eslint/parser": "^4.3.0",
"eslint": "^7.10.0",
"jest": "^24.5.0",
"rimraf": "^3.0.0",
"ts-jest": "^24.0.2",
"ts-node": "^8.3.0",
"typescript": "^4.1.0-beta"
},
"peerDependencies": {
"typescript": "^4.1.0-beta | ^4.1.0"
},
"peerDependenciesMeta": {
"typescript": {
"optional": true
}
}
}