-
Notifications
You must be signed in to change notification settings - Fork 28
/
package.json
26 lines (26 loc) · 958 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
{
"name": "jquery-jsonrpcclient",
"version": "0.7.0",
"description": "JSON-RPC 2.0 Client for HTTP and WebSocket backend",
"main": "jquery.jsonrpcclient.js",
"scripts": {
"test": "rm -fr coverage && ./node_modules/karma/bin/karma start --single-run --browsers PhantomJS test/unit.conf.js && ./node_modules/.bin/jscs jquery.jsonrpcclient.js && ./node_modules/.bin/jscs test/unit/tests.js && find coverage/ -name lcov.info -print0 | xargs -0 cat | ./node_modules/coveralls/bin/coveralls.js"
},
"author": "Textalk AB http://textalk.se/",
"license": "MIT",
"dependencies": {
"jquery": ">=1.5"
},
"devDependencies": {
"karma": "~0.12.21",
"karma-mocha": "~0.1.1",
"karma-chai-sinon": "~0.1.1",
"jquery": "~2.1.0",
"karma-coverage": "~0.1.5",
"coveralls": "~2.8.0",
"mocha-lcov-reporter": "0.0.1",
"karma-growler-reporter": "0.0.1",
"jscs": "~1.5.9",
"karma-phantomjs-launcher": "^0.1.4"
}
}