forked from zulip/zulip-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.15 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": "zulip-js",
"version": "1.0.12",
"description": "Javascript library to access the Zulip API",
"main": "lib/index.js",
"directories": {
"test": "test"
},
"dependencies": {
"es6-promise": "^3.2.1",
"fs-readfile-promise": "^3.0.0",
"ini": "^1.3.4",
"isomorphic-fetch": "^2.2.1",
"isomorphic-form-data": "0.0.1"
},
"devDependencies": {
"babel-cli": "^6.14.0",
"babel-preset-es2015": "^6.14.0",
"eslint": "^3.5.0",
"eslint-config-airbnb": "^11.1.0",
"eslint-plugin-import": "^1.15.0",
"eslint-plugin-jsx-a11y": "^2.2.2",
"eslint-plugin-react": "^6.2.0",
"mocha": "^3.0.2",
"chai-as-promised": "^5.3.0",
"chai": "^3.5.0"
},
"scripts": {
"compile": "babel --presets es2015 -d lib/ src/",
"prepublish": "npm run compile",
"lint": "eslint src test examples",
"test": "npm run lint && mocha --recursive"
},
"repository": {
"type": "git",
"url": "git+https://github.com/zulip/zulip-js.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/zulip/zulip-js/issues"
},
"homepage": "https://github.com/zulip/zulip-js#readme"
}