-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
45 lines (45 loc) · 1.06 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": "symlink-resolver",
"version": "0.2.1",
"description": "Simple tool for replacing symlinks by real files and vice versa.",
"main": "index.js",
"bin": {
"symlink-resolver": "bin/index.js"
},
"dependencies": {},
"devDependencies": {
"@types/es6-promise": "0.0.32",
"@types/node": "^7.0.13",
"typescript": "^2.2.2"
},
"scripts": {
"tsc": "tsc",
"build": "$(npm bin)/tsc --p tsconfig.json",
"test": "echo \"Error: no test specified\" && exit 1",
"prepublish": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/DanielKucal/symlink-resolver.git"
},
"keywords": [
"symlink",
"symlinks",
"build-tool",
"nativescript",
"resolver",
"replace",
"real",
"files"
],
"author": "Daniel Kucal <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/DanielKucal/symlink-resolver/issues"
},
"homepage": "https://github.com/DanielKucal/symlink-resolver#readme",
"engines": {
"node": ">= 6.4.0",
"npm": ">= 3"
}
}