-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.31 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
{
"name": "dir-copy-to",
"version": "1.0.3",
"description": "Module to replace directories",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"bin": {
"copy-to": "lib/index.js"
},
"scripts": {
"build": "tsc",
"format": "prettier --write \"src/**/*.(js|ts)\"",
"lint": "eslint src --ext .js,.ts",
"lint:fix": "eslint src --fix --ext .js,.ts",
"prepare": "npm run build",
"prepublishOnly": "npm run lint",
"preversion": "npm run lint",
"version": "npm run format && git add -A src",
"postversion": "git push && git push --tags"
},
"license": "MIT",
"author": "Aditya Koukuntla",
"homepage": "https://github.com/KoukuntlaAditya/copy-to",
"repository": {
"type": "git",
"url": "https://github.com/KoukuntlaAditya/copy-to.git"
},
"devDependencies": {
"@types/fs-extra": "^11.0.2",
"@types/jest": "29.4.0",
"@types/node": "^20.7.0",
"@typescript-eslint/eslint-plugin": "5.54.0",
"@typescript-eslint/parser": "5.52.0",
"eslint": "8.35.0",
"eslint-plugin-jest": "27.2.1",
"jest": "29.4.3",
"prettier": "2.8.4",
"ts-jest": "29.0.5",
"typescript": "^4.9.5"
},
"files": [
"lib/**/*"
],
"dependencies": {
"commander": "^11.0.0",
"fs-extra": "^11.1.1"
},
"publishConfig": {
"access": "public"
}
}