-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
54 lines (54 loc) · 1.38 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
54
{
"name": "bearychat-rtm-client",
"version": "0.9.3",
"description": "RTM client for BearyChat",
"main": "lib/index.js",
"repository": "https://github.com/bearyinnovative/bearychat-rtm-client",
"author": "Yue Wang <[email protected]>",
"license": "MIT",
"optionalDependencies": {},
"scripts": {
"test": "jest",
"clean": "rm -f *.js",
"build:babel": "babel src -d . --ignore 'src/__test__/*.js' --source-maps inline",
"build": "npm run clean && npm run build:babel",
"build:doc": "markdown-toc -i README.md",
"prepublish": "npm run build"
},
"dependencies": {
"babel-runtime": "^6.23.0",
"invariant": "^2.2.2"
},
"keywords": [
"BearyChat",
"API",
"chatops"
],
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-latest": "^6.24.1",
"jest": "^20.0.3",
"markdown-toc": "^1.1.0",
"mock-socket": "^6.0.4"
},
"jest": {
"collectCoverage": true,
"coverageReporters": [
"text"
],
"collectCoverageFrom": [
"src/*.js"
],
"coveragePathIgnorePatterns": [
"/node_modules/",
"__test__"
],
"setupFiles": [
"./src/__test__/prepare.js"
]
}
}