-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
49 lines (49 loc) · 1.35 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
{
"name": "bearychat",
"version": "1.2.0",
"description": "BearyChat API client for Node and the Browser.",
"main": "dist/index.js",
"scripts": {
"test": "jest",
"lint": "eslint ./src",
"download-api-schema": "./scripts/download-api-schema",
"update": "./scripts/download-api-schema && npm run build:src",
"build:src": "./scripts/generate-validate && ./scripts/generate-api && ./scripts/generate-docs",
"build:babel": "babel src -d dist --copy-files --source-maps inline",
"build": "npm run build:babel",
"build:doc": "markdown-toc -i README.md && markdown-toc -i README_CN.md",
"prepublish": "npm run build"
},
"keywords": [
"BearyChat",
"API",
"chatops"
],
"repository": {
"type": "git",
"url": "git://github.com/bearyinnovative/bearychat.js.git"
},
"author": "hbc <hbc@beary.chat>",
"license": "MIT",
"devDependencies": {
"async": "^2.1.4",
"babel-cli": "^6.18.0",
"babel-preset-latest": "^6.16.0",
"eslint": "^3.12.2",
"eslint-config-airbnb-base": "^11.0.0",
"eslint-plugin-import": "^2.2.0",
"jest": "^17.0.3",
"js-yaml": "^3.8.1",
"markdown-toc": "^1.1.0"
},
"dependencies": {
"babel-plugin-add-module-exports": "^0.2.1",
"isomorphic-fetch": "^2.2.1"
},
"jest": {
"collectCoverage": true,
"coverageReporters": [
"text"
]
}
}