-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
87 lines (87 loc) · 2.23 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "code-replacer",
"version": "0.1.4",
"bin": {
"code-replacer": "./dist/cli/index.js"
},
"description": "Replace codes line by line with regex for target files",
"main": "./dist/cli/index.js",
"scripts": {
"test": "jest __test__ --ci --coverage && codecov",
"unitTest": "jest ./__test__/unitTest/**.test.js --ci --coverage && codecov",
"replacerTest": "jest ./__test__/replacerTest/**/**.test.js --ci --coverage && codecov",
"build": "tsc",
"rebuild": "rm -rf dist && npm run build",
"pub": "npm run build && npm publish --access public",
"report-coverage": "cat ./coverage/lcov.info | codecov",
"lint": "tslint --fix --project ./tsconfig.json"
},
"author": "jopemachine",
"license": "MIT",
"dependencies": {
"chalk": "^4.1.2",
"csv-parser": "^2.3.3",
"dotenv": "^8.2.0",
"env-paths": "^2.2.1",
"fs-extra": "^10.0.0",
"inquirer": "^7.3.3",
"inquirer-file-tree-selection-prompt": "^1.0.6",
"istextorbinary": "^5.14.0",
"lodash": "^4.17.20",
"log-symbols": "^4.1.0",
"meow": "^7.1.1",
"readline-sync": "^1.4.10",
"recursive-readdir": "^2.2.2",
"yn": "^4.0.0"
},
"keywords": [
"code-replace",
"regex-match"
],
"files": [
"dist/**",
"dist/usageLog.json"
],
"devDependencies": {
"@types/fs-extra": "^9.0.12",
"@types/lodash": "^4.14.162",
"@types/node": "^14.11.10",
"codecov": "^3.8.0",
"eslint": "^7.10.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"husky": "^4.3.0",
"jest": "^26.5.2",
"ts-jest": "^26.4.1",
"ts-node": "^9.0.0",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"typescript": "^4.0.3"
},
"husky": {
"hooks": {
"pre-commit": "npm run test",
"pre-push": "npm run test"
}
},
"jest": {
"coverageDirectory": "./coverage/",
"collectCoverage": true,
"transform": {
"^.+\\.ts$": "ts-jest"
},
"moduleFileExtensions": [
"ts",
"js"
],
"globals": {
"ts-jest": {
"enableTsDiagnostics": true
}
},
"verbose": true
}
}