-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
48 lines (48 loc) · 1.14 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
{
"name": "shelljs-plugin-open",
"version": "0.2.1",
"description": "An example shelljs-plugin to open a file with its default application",
"main": "index.js",
"scripts": {
"posttest": "npm run lint",
"test": "mocha",
"lint": "node scripts/eslint-wrapper.js",
"changelog": "shelljs-changelog",
"release:major": "shelljs-release major",
"release:minor": "shelljs-release minor",
"release:patch": "shelljs-release patch"
},
"keywords": [
"shelljs",
"plugin",
"open"
],
"author": "Nate Fischer <[email protected]> (https://github.com/nfischer)",
"repository": {
"type": "git",
"url": "git://github.com/shelljs/plugin-open.git"
},
"license": "MIT",
"files": [
"index.js"
],
"devDependencies": {
"eslint": "^4.19.1",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.17.3",
"mocha": "^5.2.0",
"shelljs": "^0.8.5",
"shelljs-changelog": "^0.2.6",
"shelljs-release": "^0.5.1",
"should": "^13.2.3"
},
"peerDependencies": {
"shelljs": "^0.8.5"
},
"dependencies": {
"opener": "^1.4.1"
},
"engines": {
"node": ">=4"
}
}