-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
42 lines (42 loc) · 931 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
{
"name": "interval-timer-cli",
"version": "1.0.8",
"description": "Cli tool that lets you create a set of interval sequences.",
"author": {
"name": "Ricardo de Pena",
"email": "[email protected]"
},
"repository": "rdepena/interval-timer-cli",
"license": "MIT",
"files": [
"index.js",
"cli.js"
],
"keywords": [
"node-interval-timer",
""
],
"dependencies": {
"meow": "^3.1.0",
"node-notifier": "^5.4.0",
"say": "^0.8.0",
"single-line-log": "^0.4.1"
},
"devDependencies": {
"grunt": "^1.0.4",
"grunt-cli": "^1.3.2",
"grunt-contrib-jshint": "^2.1.0",
"grunt-contrib-nodeunit": "^2.0.0",
"grunt-contrib-watch": "^1.1.0",
"grunt-mocha-cli": "^4.0.0",
"jshint-stylish": "^1.0.1",
"load-grunt-tasks": "^3.1.0",
"time-grunt": "^1.1.0"
},
"scripts": {
"test": "grunt"
},
"bin": {
"interval-timer": "cli.js"
}
}