-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.5 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
52
53
54
{
"name": "@macrome/generator-typescript",
"version": "0.1.0",
"description": "A macrome generator for compiling typescript sources",
"main": "lib/index",
"engines": {
"node": ">=15.0.0"
},
"files": [
"lib/**/*.js",
"lib/**/*.d.ts"
],
"scripts": {
"format": "prettier --write '**/*.{js,json,md}'",
"build": "tsc",
"test": "yarn babel test/fixture.ts -o test/fixture.d.ts",
"verify": "run-s lint test"
},
"lint-staged": {
"*.{md,json}": [
"prettier -c"
]
},
"keywords": [
"macrome",
"generator",
"typescript",
"build",
"transpile"
],
"repository": "[email protected]:conartist6/macrome.git",
"author": "Conrad Buck <[email protected]>",
"license": "MIT",
"dependencies": {
"@babel/core": "^7.17.2",
"@babel/plugin-syntax-typescript": "^7.16.7",
"@babel/plugin-transform-modules-commonjs": "^7.16.8",
"@babel/preset-typescript": "^7.16.7",
"@iter-tools/queue": "^1.5.2",
"@macrome/generator": "github:macrome-js/generator#84dc41b4e85fa61668abe348175ea640ee59618f",
"babel-plugin-recast": "^0.2.0",
"babel-type-scopes": "^1.1.0",
"errawr": "github:conartist6/errawr#1a075e44cb9bfaf99894d0aa7561bc39d4138034",
"recast": "github:conartist6/recast#15db2921552e890fb404272005466044285df678"
},
"devDependencies": {
"@babel/cli": "^7.15.0",
"@types/babel__core": "^7.1.18",
"@types/node": "^17.0.16",
"lint-staged": "^11.0.0",
"npm-run-all": "^4.1.5",
"typescript": "^4.3.5"
}
}