-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
64 lines (64 loc) · 1.49 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
{
"name": "@danieldietrich/copy",
"version": "0.4.2",
"description": "Simple yet powerful copy tool.",
"keywords": [
"chgrp",
"chown",
"copy",
"dir",
"directory",
"file",
"files",
"filter",
"folder",
"recursive",
"rename",
"symlink",
"transform",
"typed",
"types",
"typescript"
],
"engines": {
"node": ">=10.12.0"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"clean": "rm -fr dist",
"build": "npm run clean && npm run lint && tsc --project tsconfig.build.json",
"lint": "eslint ./src --ext .js,.jsx,.ts,.tsx",
"prepare": "npm test && npm run build",
"test": "jest --coverage"
},
"repository": {
"type": "git",
"url": "https://github.com/danieldietrich/copy"
},
"homepage": "https://github.com/danieldietrich/copy",
"bugs": "https://github.com/danieldietrich/copy/issues",
"author": {
"name": "Daniel Dietrich",
"email": "[email protected]",
"url": "https://danieldietrich.dev"
},
"funding": "https://github.com/sponsors/danieldietrich",
"license": "MIT",
"devDependencies": {
"@types/jest": "^26.0.8",
"@types/node": "^14.0.27",
"@typescript-eslint/eslint-plugin": "^2.13.0",
"@typescript-eslint/parser": "^2.13.0",
"@types/rimraf": "^3.0.0",
"codecov": "^3.6.1",
"eslint": "^6.8.0",
"jest": "^24.9.0",
"rimraf": "^3.0.0",
"ts-jest": "^24.2.0",
"typescript": "^4.0.2"
}
}