-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
46 lines (46 loc) · 1.16 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
{
"name": "dotfiles",
"version": "1.0.0",
"description": "My dotfiles for Ubuntu and Windows",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/Tyriar/dotfiles.git"
},
"bin": "cli.js",
"keywords": [
"config",
"configuration",
"dotfiles"
],
"author": "Daniel Imms <tyriar@tyriar.com> (http://www.growingwiththeweb.com/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/Tyriar/dotfiles/issues"
},
"homepage": "https://github.com/Tyriar/dotfiles#readme",
"scripts": {
"build": "tsc -p ./src",
"lint": "tslint ./src/**/*.ts",
"postinstall": "npm run build",
"start": "node ./lib/cli.js",
"watch": "tsc -w -p ./src"
},
"dependencies": {
"gnome-terminal-version": "^0.1.0",
"home-path": "^1.0.1",
"meow": "^3.5.0",
"mkdirp": "^0.5.1",
"semver": "^5.1.0",
"symlink-or-copy": "^1.0.1"
},
"devDependencies": {
"@types/meow": "^5.0.0",
"@types/mkdirp": "^0.5.2",
"@types/node": "^11.13.4",
"@types/symlink-or-copy": "^1.2.0",
"tslint": "^5.15.0",
"tslint-consistent-codestyle": "^1.15.1",
"typescript": "^3.4.3"
}
}