-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
45 lines (45 loc) · 1006 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
{
"name": "yez",
"version": "2.1.0",
"homepage": "https://github.com/krasimir/yez",
"description": "Chrome extension which acts as task runner",
"main": "./node/index.js",
"author": {
"name": "Krasimir Tsonev",
"email": "info@krasimirtsonev.com",
"url": "http://krasimirtsonev.com"
},
"license": "MIT",
"dependencies": {
"electron-prebuilt": "0.37.6",
"http-server": "0.9.0",
"open": "0.0.5",
"ps-tree": "0.0.3",
"socket.io": "0.9.16",
"spawn-args": "0.0.2",
"yargs": "4.6.0"
},
"devDependencies": {
"expect.js": "0.3.1",
"grunt": "0.4.1",
"grunt-contrib-concat": "0.3.0",
"grunt-contrib-watch": "0.4.4"
},
"keywords": [
"chrome",
"extension",
"task",
"runner"
],
"repository": {
"type": "git",
"url": "https://github.com/krasimir/yez.git"
},
"bin": {
"yez": "./node/index.js"
},
"scripts": {
"test": "mocha ./node/tests --reporter spec",
"start": "node ./node/index.js"
}
}