-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.1 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.1 KB
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
52
53
{
"version": "0.51.0",
"license": "MIT",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/fleck/class-types.macro.git"
},
"files": [
"dist",
"src"
],
"engines": {
"node": ">=10"
},
"scripts": {
"start": "tsdx watch",
"build": "tsdx build",
"test": "tsdx build && tsdx test",
"lint": "tsdx lint",
"prepare": "tsdx build"
},
"husky": {
"hooks": {
"pre-commit": "tsdx lint"
}
},
"prettier": {
"printWidth": 80,
"trailingComma": "es5"
},
"name": "class-types.macro",
"author": "Jonathan Fleckenstein",
"module": "dist/class-types.macro.esm.js",
"devDependencies": {
"@babel/preset-react": "^7.10.1",
"@types/babel-plugin-macros": "^2.8.1",
"babel-plugin-tester": "^9.2.0",
"husky": "^4.2.5",
"tsdx": "^0.14.1",
"tslib": "^2.0.0",
"typescript": "^4.9.4"
},
"dependencies": {
"@babel/traverse": "^7.12.9",
"@babel/types": "^7.10.3",
"babel-plugin-macros": "^2.8.0"
},
"resolutions": {
"typescript": "^4.9.4"
}
}