forked from owncloud/davclient.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (40 loc) · 1014 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
{
"name": "davclient.js",
"version": "0.1.1",
"description": "WebDAV, CalDAV and CardDAV client for javascript",
"main": "lib/client.js",
"directories": {
"test": "tests"
},
"scripts": {
"test": "./node_modules/karma/bin/karma start --single-run --browsers PhantomJS"
},
"repository": {
"type": "git",
"url": "https://github.com/evert/davclient.js.git"
},
"keywords": [
"webdav",
"caldav",
"carddav"
],
"author": "Evert Pot",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/evert/davclient.js/issues"
},
"devDependencies": {
"jasmine-core": "^2.5.2",
"jasmine-sinon": "~0.4.0",
"karma": "^1.5.0",
"karma-chrome-launcher": "^0.2.0",
"karma-firefox-launcher": "^0.1.6",
"karma-jasmine": "^1.1.0",
"karma-jasmine-sinon": "^1.0.4",
"karma-phantomjs-launcher": "^0.2.1",
"phantomjs": "2.1.7"
},
"scripts": {
"test": "./node_modules/.bin/karma start --single-run --browsers PhantomJS,Firefox"
}
}