forked from BendingBender/yarpm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 842 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
{
"name": "yarpm",
"version": "0.2.1",
"description": "CLI tool to run npm scripts with either npm or yarn, depending on how it was started",
"bin": {
"yarpm": "bin/yarpm.js",
"yarpm-yarn": "bin/yarpm-yarn.js"
},
"main": "lib/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/BendingBender/yarpm.git"
},
"keywords": [
"npm",
"yarn",
"npm-scripts",
"cross-platform",
"npm-package",
"cli"
],
"author": "Dimitri Benin <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/BendingBender/yarpm/issues"
},
"homepage": "https://github.com/BendingBender/yarpm#readme",
"dependencies": {
"command-exists": "^1.2.2",
"cross-spawn": "^5.1.0"
}
}