forked from clayrisser/dotstow
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
102 lines (102 loc) · 2.93 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
{
"name": "dotstow",
"version": "0.2.2",
"description": "manage dotfiles with stow",
"keywords": [
"dotstow",
"cli"
],
"homepage": "https://github.com/codejamninja/dotstow/packages/cli",
"bugs": {
"url": "https://github.com/codejamninja/dotstow/issues",
"email": "[email protected]"
},
"license": "MIT",
"author": {
"name": "Jam Risser",
"email": "[email protected]",
"url": "https://codejam.ninja"
},
"files": [
"bin.js",
"lib"
],
"main": "lib/index.js",
"bin": {
"dotstow": "bin.js"
},
"repository": {
"type": "git",
"url": "https://github.com/codejamninja/dotstow"
},
"scripts": {
"build": "npm run test && babel src -d lib --extensions \".ts,.tsx\" --source-maps inline && tsc -d --emitDeclarationOnly",
"clean": "git clean -fXd -e \\!node_modules -e \\!node_modules/**/* && jest --clearCache",
"clean:purge": "jest --clearCache && git clean -fXd",
"format": "prettier --write ./**/*.{json,md,scss,yaml,yml,js,jsx,ts,tsx} --ignore-path .gitignore",
"lint": "npm run format && tsc --noEmit && eslint --ext .ts,.tsx ./",
"lint:fix": "npm run format && tsc --noEmit && eslint --ext .ts,.tsx --fix ./",
"prepublish": "npm run build",
"start": "npm run build && babel-node --extensions \".ts,.tsx\" src/bin",
"re-run": "babel-node --extensions \".ts,.tsx\" src/bin",
"test": "npm run lint:fix && jest --coverage",
"test:watch": "npm run lint && jest --watch"
},
"dependencies": {
"@babel/polyfill": "^7.6.0",
"@oclif/command": "^1.5.19",
"@oclif/config": "^1.13.3",
"@oclif/errors": "^1.2.2",
"@oclif/parser": "^3.8.4",
"@oclif/plugin-autocomplete": "^0.1.4",
"bluebird": "^3.7.2",
"core-js": "^3.3.6",
"err": "^2.1.11",
"execa": "^3.4.0",
"fs-extra": "^8.1.0",
"nodegit": "^0.26.2",
"ora": "^4.0.3",
"typescript": "^3.7.2",
"yaml": "^1.10.0",
"yarn": "^1.22.5"
},
"devDependencies": {
"@babel/cli": "^7.6.4",
"@babel/core": "^7.6.4",
"@babel/node": "^7.6.3",
"@babel/plugin-proposal-optional-chaining": "^7.7.4",
"@babel/preset-env": "^7.6.3",
"@babel/preset-typescript": "^7.6.0",
"@oclif/dev-cli": "^1.22.2",
"@types/bluebird": "^3.5.29",
"@types/core-js": "^2.5.2",
"@types/fs-extra": "^8.0.1",
"@types/jest": "^24.0.21",
"@types/nodegit": "^0.24.13",
"@typescript-eslint/eslint-plugin": "^2.9.0",
"eslint": "^6.6.0",
"eslint-config-airbnb-typescript": "^6.3.1",
"eslint-config-jam": "^0.2.20",
"jest": "^24.9.0",
"prettier": "^2.1.2"
},
"engines": {
"node": ">=12.0.0"
},
"eslintIgnore": [
"lib"
],
"jest": {
"testRegex": "tests(/|/.*/)[^_/]*[jt]sx?$",
"verbose": true
},
"oclif": {
"commands": "./lib/commands",
"bin": "dotstow",
"plugins": [
"@oclif/plugin-autocomplete",
"@oclif/plugin-help"
]
},
"gitHead": "7687a46b0697e755d335f4b3ef7d29816d7772cb"
}