-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
48 lines (48 loc) · 1.1 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
{
"name": "@ts-morpher/modifier",
"version": "0.5.0",
"main": "dist/index.js",
"typedocMain": "src/index.ts",
"license": "MIT",
"private": false,
"publishConfig": {
"access": "public"
},
"description": "Modifier package of ts-morpher, dead simple TypeScript AST tool built on top of ts-morph.",
"keywords": [
"AST",
"TypeScript",
"ts-morph",
"ts-morpher",
"AST Operations"
],
"repository": {
"type": "git",
"url": "git+https://github.com/linbudu599/morpher.git"
},
"bugs": {
"url": "https://github.com/linbudu599/morpher.git"
},
"author": "linbudu599",
"files": [
"dist/**/*.js",
"dist/**/*.d.ts"
],
"scripts": {
"test": "jest",
"dev": "tsnd --respawn --transpile-only ./demo.ts",
"build": "tsc",
"check": "tsc --noEmit"
},
"dependencies": {
"@ts-morpher/checker": "^0.5.0",
"@ts-morpher/creator": "^0.5.0",
"@ts-morpher/helper": "^0.5.0",
"@ts-morpher/types": "^0.5.0",
"ow": "^0.28.1"
},
"peerDependencies": {
"ts-morph": "^12.0.0"
},
"gitHead": "3f0d3a16c498b5b8ae929822a02273dfe1ade149"
}