-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.25 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
{
"name": "mfr",
"version": "1.1.3",
"main": "dist/index.js",
"files": [
"/dist"
],
"scripts": {
"build": "tsc --build",
"build:clean": "tsc --build --clean && npm run build",
"build:test": "tsc --build ./tests/tsconfig.build.json",
"pretest": "npm run build:clean && npm run build:test",
"lint": "eslint **/*.ts",
"lint:fix": "npm run lint -- --fix",
"test": "nyc ava"
},
"bin": {
"mfr": "./dist/bin/index.js"
},
"repository": {
"type": "git",
"url": "git@github.com:elszczepano/mfr.git"
},
"author": "Dominik Szczepaniak",
"license": "MIT",
"keywords": [ "copy", "files", "rename", "renaming", "filesystem", "mass", "file" ],
"dependencies": {
"chalk": "4.1.0",
"uuid": "8.3.2",
"yargs": "16.2.0"
},
"devDependencies": {
"@cksource-cs/eslint-config-cs-module": "^2.1.2",
"@types/chalk": "2.2.0",
"@types/node": "12.12.6",
"@types/rimraf": "3.0.0",
"@types/sinon": "9.0.10",
"@types/uuid": "8.3.0",
"@types/yargs": "16.0.0",
"ava": "3.15.0",
"eslint": "6.6.0",
"eslint-import-resolver-node": "0.3.4",
"nyc": "15.1.0",
"rimraf": "3.0.2",
"sinon": "9.2.4",
"ts-node": "8.6.2",
"tsconfig-paths": "3.9.0",
"typescript": "4.0.7"
}
}