-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
33 lines (33 loc) · 1.06 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
{
"name": "@nikhilverma/ast-grep",
"version": "0.0.5-alpha",
"bin": "dist/code-grep-bin.js",
"dependencies": {
"@babel/parser": "7.9.4",
"@babel/traverse": "7.9.0",
"chalk": "^3.0.0",
"glob": "^7.1.6",
"yargs": "^15.3.1"
},
"devDependencies": {
"@babel/preset-env": "^7.11.5",
"@babel/preset-typescript": "^7.10.4",
"@types/babel__traverse": "7.0.9",
"@types/glob": "^7.1.1",
"@types/jest": "^26.0.14",
"@types/yargs": "^15.0.4",
"jest": "^26.5.3",
"ts-node": "8.8.1",
"tsconfig-paths": "^3.9.0",
"typescript": "^4.0.3"
},
"scripts": {
"tsc:node": "ts-node -T --project ./tsconfig.json -r tsconfig-paths/register",
"tsc:debug": "NODE_OPTIONS=\"--inspect --inspect-brk\" ts-node -T --project ./tsconfig.json -r tsconfig-paths/register",
"grep": "npm run tsc:node -- ./src/code-grep-bin.ts",
"test": "jest",
"test:debug": "node --inspect --inspect-brk ./node_modules/.bin/jest --no-cache --no-watchman --runInBand",
"build": "rm -rf dist && tsc",
"prepublish": "npm run build"
}
}