-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
45 lines (45 loc) · 925 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
40
41
42
43
44
45
{
"name": "yarn-or-npm",
"version": "3.0.1",
"description": "Use Yarn or npm to execute a command",
"license": "MIT",
"engines": {
"node": ">=8.6.0"
},
"repository": {
"type": "git",
"url": "git@github.com:camacho/yarn-or-npm.git"
},
"author": "Patrick Camacho <patrick@daftdevelopers.com>",
"keywords": [
"yarn",
"npm",
"spawn",
"command"
],
"bin": {
"yarn-or-npm": "bin/index.js",
"yon": "bin/index.js"
},
"main": "index.js",
"files": [
"lib/",
"bin/"
],
"scripts": {
"format": "npm-run-all format-*",
"format-code": "prettier --write ./lib/* ./bin/*",
"format-package": "format-package -w",
"test": "jest"
},
"dependencies": {
"cross-spawn": "^7.0.1",
"pkg-dir": "^4.2.0"
},
"devDependencies": {
"format-package": "^5.2.0",
"jest": "^25.1.0",
"npm-run-all": "^4.1.5",
"prettier": "^1.19.1"
}
}