-
-
Notifications
You must be signed in to change notification settings - Fork 55
/
package.json
48 lines (48 loc) · 1.37 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
{
"name": "zulip-js",
"version": "2.0.9",
"description": "Javascript library to access the Zulip API",
"main": "lib/index.js",
"directories": {
"test": "test"
},
"dependencies": {
"@babel/runtime": "^7.25.7",
"ini": "^5.0.0",
"isomorphic-fetch": "^3.0.0",
"isomorphic-form-data": "2.0.0"
},
"devDependencies": {
"@babel/cli": "^7.25.7",
"@babel/core": "^7.25.8",
"@babel/plugin-transform-runtime": "^7.25.7",
"@babel/preset-env": "^7.25.8",
"chai": "^4.5.0",
"eslint": "^8.57.1",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jsx-a11y": "^6.10.0",
"mocha": "^10.7.3",
"prettier": "^3.3.3",
"sinon": "^19.0.2"
},
"scripts": {
"build": "babel --delete-dir-on-start -d lib/ src/",
"prepare": "npm run build",
"lint": "eslint . && prettier --loglevel=warn --check .",
"lint:fix": "eslint --fix . && prettier --loglevel=warn --write .",
"test": "npm run lint && npm run build && mocha test/*",
"call": "node examples/interactive_call_endpoint.js"
},
"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"
}