-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
53 lines (53 loc) · 1.75 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
45
46
47
48
49
50
51
52
53
{
"name": "signal-arr",
"version": "0.0.14",
"description": "A piratey version of the SignalR Javascript client without stupid jquery.",
"main": "index.js",
"scripts": {
"dev": "./node_modules/.bin/babel src -s -w -d dist",
"clean": "./node_modules/.bin/rimraf dist coverage",
"build": "./node_modules/.bin/babel src -s -o index.js",
"test": "./node_modules/.bin/mocha",
"test-cov": "./node_modules/.bin/babel-istanbul cover node_modules/.bin/_mocha -- test && cat ./coverage/lcov.info | node_modules/coveralls/bin/coveralls.js && rimraf ./coverage",
"lint": "./node_modules/.bin/eslint src"
},
"repository": {
"type": "git",
"url": "github.com/RoviSys/signal-arr"
},
"authors": [
"Stephen C. Austin <stephen.austin@rovisys.com>",
"Brandon Alanskas <brandon.alanskas@rovisys.com>"
],
"license": "MIT",
"devDependencies": {
"babel-cli": "^6.2.0",
"babel-core": "^6.13.2",
"babel-eslint": "^5.0.0-beta6",
"babel-istanbul": "^0.6.0",
"babel-plugin-transform-es2015-modules-commonjs": "^6.2.0",
"babel-plugin-undeclared-variables-check": "^6.1.18",
"babel-preset-es2015": "^6.13.2",
"babel-preset-stage-0": "^6.1.18",
"chai": "^3.4.0",
"coveralls": "^2.11.4",
"eslint": "^3.3.0",
"eslint-plugin-babel": "^3.0.0",
"eslint-plugin-private-variables": "austinsc/javascript-private-variables",
"isparta": "^4.0.0",
"istanbul": "^0.4.0",
"lodash": "^4.15.0",
"mocha": "^3.0.2",
"rimraf": "^2.5.0"
},
"dependencies": {
"async": "^1.4.2",
"eventsource": "^0.1.6",
"lodash.last": "^3.0.0",
"lodash.mapvalues": "^4.6.0",
"lodash.sum": "^4.0.0",
"lodash.takeright": "^4.1.1",
"logdown": "^1.2.4",
"superagent": "fiatjaf/superagent"
}
}