-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
48 lines (48 loc) · 1.33 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": "coderfly",
"description": "Find function-level association impacts of code changes",
"version": "0.1.1",
"author": "CocaColf <cocacolf@gmail.com>",
"main": "dist/index.js",
"bin": {
"coderfly": "bin/coderfly.js"
},
"files": [
"bin",
"dist"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/CocaColf/coderfly"
},
"scripts": {
"build": "rm -rf dist/ && tsc && node ./copy_files.js && find ./dist -type f|xargs dos2unix",
"lint": "eslint . --ext .ts",
"lint:fix": "eslint . --ext .ts --fix"
},
"devDependencies": {
"@types/n-readlines": "^1.0.3",
"@types/node": "^17.0.22",
"@typescript-eslint/eslint-plugin": "^5.19.0",
"@typescript-eslint/parser": "^5.19.0",
"eslint": "^8.13.0",
"typescript": "^4.6.3"
},
"dependencies": {
"@babel/parser": "^7.17.8",
"@babel/plugin-proposal-class-properties": "^7.16.7",
"@babel/plugin-proposal-object-rest-spread": "^7.17.3",
"@babel/preset-env": "^7.16.11",
"@babel/preset-typescript": "^7.16.7",
"commander": "^9.1.0",
"de-indent": "^1.0.2",
"enhanced-resolve": "^5.9.2",
"execa": "5.1.1",
"he": "^1.2.0",
"n-readlines": "^1.0.1",
"nanoid": "^3.3.4",
"ora": "5.4.1",
"recast": "^0.20.5"
}
}