forked from timoxley/npm-run
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 969 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
46
47
{
"name": "npm-run",
"version": "5.0.1",
"description": "Run executables for locally-installed packages without using ./node_modules/.bin",
"main": "index.js",
"bin": {
"npm-run": "bin/npm-run.js"
},
"scripts": {
"test": "tape test/*.js && npm run lint",
"lint": "standard"
},
"author": "Tim Oxley",
"license": "MIT",
"devDependencies": {
"bl": "^1.2.2",
"standard": "^11.0.1",
"tape": "^4.9.0"
},
"dependencies": {
"minimist": "^1.2.0",
"npm-path": "^2.0.4",
"npm-which": "^3.0.1",
"serializerr": "^1.0.3"
},
"directories": {
"test": "test"
},
"repository": {
"type": "git",
"url": "https://github.com/timoxley/npm-run.git"
},
"keywords": [
"npm",
"path",
"executable",
".bin",
"run"
],
"bugs": {
"url": "https://github.com/timoxley/npm-run/issues"
},
"homepage": "https://github.com/timoxley/npm-run",
"engines": {
"node": ">=4.2.0"
}
}