-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
44 lines (44 loc) · 1.31 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
{
"name": "@usslc/channels-api",
"version": "3.0.1",
"description": "Modular client to consume channels-api powered websocket services",
"main": "./dist/channels-api.js",
"repository": {
"url": "https://github.com/usstudentloancenter/channels-api-client",
"type": "git"
},
"author": "Zach Kanzler <zach@usstudentloancenter.org>",
"license": "MIT",
"dependencies": {
"autobind-decorator": "^1.3.4",
"flow-copy-source": "^1.1.0",
"lodash": "^4.17.4",
"loglevel": "^1.4.1",
"reconnecting-websocket": "^3.0.3"
},
"devDependencies": {
"babel-cli": "^6.24.0",
"babel-core": "^6.24.0",
"babel-plugin-transform-class-properties": "^6.23.0",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-es2015-modules-umd": "^6.24.0",
"babel-plugin-transform-flow-strip-types": "^6.22.0",
"babel-preset-es2015": "^6.24.0",
"babel-preset-modern-browsers": "^9.0.2",
"chai": "^3.5.0",
"mocha": "^3.2.0",
"sinon": "^2.0.0",
"sinon-chai": "^2.8.0"
},
"scripts": {
"prepublish": "npm run build",
"build": "babel src --out-dir dist && flow-copy-source src dist",
"test": "mocha test/test.js"
},
"files": [
"dist/channels-api.js",
"dist/channels-api.js.flow",
"dist/interface.js.flow",
"dist/lib/UUID.js"
]
}