-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 892 Bytes
/
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
{
"name": "@sneas/dist-link",
"version": "1.0.0",
"description": "A lightning-fast alternative to 'npm link' which excludes node_modules",
"bin": {
"dist-link": "./dist/index.js"
},
"scripts": {
"build": "tsc",
"watch": "tsc --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sneas/dist-link.git"
},
"author": "Dmytro Snisarenko",
"license": "MIT",
"bugs": {
"url": "https://github.com/sneas/dist-link/issues"
},
"homepage": "https://github.com/sneas/dist-link#readme",
"devDependencies": {
"@semantic-release/git": "^9.0.0",
"@types/node": "^15.12.4",
"husky": "^6.0.0",
"lint-staged": "^11.0.0",
"prettier": "^2.3.1",
"semantic-release": "^17.4.4",
"typescript": "^4.3.4"
},
"keywords": [
"npm",
"link",
"symlink"
],
"publishConfig": {
"access": "public"
}
}