-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
104 lines (104 loc) · 2.62 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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
{
"name": "trucker",
"version": "1.1.2",
"license": "MIT",
"bin": {
"trucker": "./cli"
},
"files": [
"lib/**",
"cli",
"README.md",
"trucker-graph.svg"
],
"repository": {
"type": "git",
"url": "http://github.com/davidmfoley/node-trucker.git"
},
"keywords": [
"developer",
"file",
"mv",
"cli",
"refactor"
],
"main": "./lib",
"description": "Hauls your files around without breaking your imports",
"dependencies": {
"@babel/parser": "^7.11.4",
"coffeescript": "^2.5.1",
"ignore": "3.3.x",
"jschardet": "^2.2.1",
"micromatch": "^4.0.4",
"mkdirp": "^1.0.4",
"optimist": "~0.6.0",
"progress": "~1.1",
"typescript": "^4.0.2"
},
"devDependencies": {
"@babel/types": "^7.11.0",
"@types/chai": "^4.2.12",
"@types/micromatch": "^4.0.2",
"@types/mkdirp": "^1.0.1",
"@types/mocha": "^9.0.0",
"@types/node": "^14.6.0",
"@types/optimist": "^0.0.30",
"@types/progress": "^2.0.4",
"@typescript-eslint/eslint-plugin": "^5.30.6",
"@typescript-eslint/parser": "^5.30.6",
"chai": "^4.2.0",
"concurrently": "^6.2.0",
"eslint": "^8.19.0",
"eslint-config-prettier": "^8.5.0",
"mocha": "^8.1.2",
"mocha-concise-reporter": "^1.2.0",
"nodemon": "^2.0.7",
"nyc": "^15.1.0",
"prettier": "^2.1.0",
"source-map-support": "^0.5.19",
"ts-node": "^9.0.0"
},
"engines": {
"node": ">=10.0.0"
},
"scripts": {
"build": "tsc -p tsconfig.build.json",
"ci": "yarn build && yarn test && yarn lint && yarn prettier",
"clean": "rm -rf ./lib/",
"cover": "COVERAGE=1 nyc mocha && open coverage/index.html",
"fix:prettier": "prettier --write '{src,test}/**/*.ts'",
"lint": "eslint src/ test/",
"prettier": "prettier -c '{src,test}/**/*.ts'",
"test": "MOCHA_CONCISE_MODE=minimal MOCHA_COLORS=1 mocha -R mocha-concise-reporter",
"test:watch": "nodemon -q -e ts --exec \"yarn test\" --watch src --watch test",
"build:graph": "bash -c 'dot -Tsvg -o ./trucker-graph.svg <(trucker --info --format dot --exclude test --exclude examples)' ",
"watch": "concurrently 'yarn test:watch' 'yarn build -w --noEmit --pretty --preserveWatchOutput' -n t,b -c cyan,yellow"
},
"mocha": {
"recursive": true,
"spec": [
"test/integration/*.test.ts",
"src/**/*.test.ts"
],
"extension": [
"ts"
],
"require": [
"source-map-support/register",
"ts-node/register"
]
},
"nyc": {
"extension": [
".ts",
".tsx"
],
"include": [
"src/**/*.ts"
],
"reporter": [
"html"
],
"all": true
}
}