-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.16 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
{
"name": "shelljs-plugin-sleep",
"version": "0.2.2",
"description": "A ShellJS plugin for the sleep command",
"main": "index.js",
"scripts": {
"posttest": "npm run lint",
"test": "mocha",
"test-without-lint": "mocha",
"lint": "eslint .",
"changelog": "shelljs-changelog",
"release:major": "shelljs-release major",
"release:minor": "shelljs-release minor",
"release:patch": "shelljs-release patch"
},
"keywords": [
"shelljs",
"plugin",
"sleep"
],
"author": "Nate Fischer <ntfschr@gmail.com> (https://github.com/nfischer)",
"repository": {
"type": "git",
"url": "https://github.com/nfischer/shelljs-plugin-sleep"
},
"license": "MIT",
"files": [
"index.js",
"sleepHelper.js"
],
"devDependencies": {
"eslint": "^4.19.1",
"eslint-config-airbnb-base": "^13.2.0",
"eslint-plugin-import": "^2.26.0",
"mocha": "^5.2.0",
"shelljs": "^0.8.5",
"shelljs-changelog": "^0.2.5",
"shelljs-release": "^0.5.2",
"should": "^13.2.3"
},
"peerDependencies": {
"shelljs": "^0.8.5"
},
"optionalDependencies": {
"sleep": "^6.3.0"
},
"engines": {
"node": ">=4"
}
}