-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
44 lines (44 loc) · 1.1 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
{
"name": "luster-guard",
"version": "0.6.0",
"description": "Restart workers on file system changes",
"main": "./lib/extension.js",
"scripts": {
"lint": "eslint lib && jscs lib",
"test": "npm run lint"
},
"repository": {
"type": "git",
"url": "git://github.com/nodules/luster-guard.git"
},
"keywords": [
"luster",
"guard",
"watch"
],
"author": "Phillip Kovalev <[email protected]> (https://github.com/kaero)",
"maintainers": [
"Phillip Kovalev <[email protected]> (https://github.com/kaero)"
],
"contributors": [
"Anton Drachev <[email protected]> (https://github.com/omgtehlion)",
"Dmitriy Vinokurov <[email protected]> (https://github.com/vindm)"
],
"licenses": [
{
"type": "MIT",
"url": "http://github.com/nodules/luster-guard/raw/master/LICENSE"
}
],
"readmeFilename": "README.md",
"dependencies": {
"chokidar": "^1.1.0",
"debounce": "^1.0.0"
},
"devDependencies": {
"eslint": "^1.10.3",
"eslint-config-nodules": "^0.1.1",
"jscs": "^2.6.0",
"jscs-preset-nodules": "^0.1.0"
}
}