-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
45 lines (45 loc) · 1.2 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
{
"name": "hard-links",
"version": "0.0.2",
"main": "src/index.js",
"license": "MIT",
"bin": {
"hln": "dist/cli.js"
},
"scripts": {
"start": "node dist/index.js",
"build": "tsc",
"watch": "tsc -w",
"clear": "rm -rf dist",
"rebuild": "yarn run clear && yarn run build",
"eslint": "eslint --fix src",
"test": "mocha -r ts-node/register test/**/*.ts",
"publish": "npm publish --registry=\"https://registry.npmjs.org/\""
},
"devDependencies": {
"@types/assert": "^1.5.6",
"@types/chai": "^4.2.22",
"@types/fs-extra": "^9.0.13",
"@types/mocha": "^9.0.0",
"@types/node": "^16.10.3",
"@types/yargs": "^17.0.3",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^5.0.0",
"assert": "^2.0.0",
"chai": "^4.3.4",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-promise": "^5.1.0",
"mocha": "^9.1.3",
"prettier": "^2.4.1",
"ts-node": "^10.3.0",
"typescript": "^4.4.3"
},
"dependencies": {
"fs-extra": "^10.0.0",
"yargs": "^17.2.1"
}
}