-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
42 lines (42 loc) · 963 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": "node-syncthing",
"version": "3.3.7",
"description": "Lightweight asynchronous Syncthing integration for nodejs",
"main": "./lib/index.js",
"scripts": {
"test": "node test.js",
"build": "babel ./src -d ./lib",
"build:watch": "npm run build -- --watch"
},
"babel": {
"presets": [
"es2015",
"stage-0"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/JodusNodus/node-syncthing.git"
},
"keywords": [
"syncthing",
"nodejs",
"api"
],
"author": "thomas billiet",
"license": "MIT",
"bugs": {
"url": "https://github.com/JodusNodus/node-syncthing/issues"
},
"homepage": "https://github.com/JodusNodus/node-syncthing#readme",
"devDependencies": {
"babel-cli": "^6.3.17",
"babel-preset-es2015": "^6.3.13",
"babel-preset-stage-0": "^6.5.0",
"tap-spec": "^4.1.1",
"tape": "^4.4.0"
},
"dependencies": {
"request": "^2.67.0"
}
}