-
Notifications
You must be signed in to change notification settings - Fork 22
/
package.json
43 lines (43 loc) · 1005 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
{
"name": "chokidar-socket-emitter",
"version": "0.6.0",
"description": "socket.io server emitting changes on filesystem",
"main": "server.js",
"bin": "cli.js",
"scripts": {
"precommit": "npm test",
"pretest": "standard",
"test": "node run-tests"
},
"repository": {
"type": "git",
"url": "git+https://github.com/capaj/chokidar-socket-emitter.git"
},
"engineStrict": true,
"engines": {
"node": ">=4"
},
"author": "capajj@gmail.com",
"license": "MIT",
"bugs": {
"url": "https://github.com/capaj/chokidar-socket-emitter/issues"
},
"homepage": "https://github.com/capaj/chokidar-socket-emitter#readme",
"dependencies": {
"chokidar": "^1.6.1",
"commander": "^2.9.0",
"socket.io": "^1.7.2"
},
"devDependencies": {
"chai": "^3.5.0",
"husky": "^0.13.1",
"mocha": "^3.2.0",
"socket.io-client": "^1.4.8",
"standard": "^8.6.0"
},
"jspm": {
"directories": {
"baseURL": "test/nested-baseURL"
}
}
}