-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.81 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
55
56
57
58
59
60
{
"name": "sendbird-utils",
"version": "0.0.4",
"description": "SendBird utils",
"main": "lib/index.js",
"repository": "https://github.com/brocoders/sendbird-utils.git",
"author": "Alexandr Golovchuk <ab@dokka.me>",
"license": "MIT",
"scripts": {
"lint": "yarn lint:js",
"lint:js": "eslint .",
"flow": "flow",
"test": "jest --env=node",
"test:watch": "jest --env=node --watch",
"test:coverage": "jest --env=node --coverage",
"build": "rollup -c",
"precommit": "yarn lint && npx flow && yarn test",
"preversion": "git checkout master && yarn precommit",
"postversion": "git push --follow-tags"
},
"devDependencies": {
"@babel/core": "^7.2.2",
"@babel/plugin-proposal-class-properties": "^7.2.3",
"@babel/preset-env": "^7.2.3",
"@babel/preset-flow": "^7.0.0",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^10.0.1",
"babel-jest": "^23.6.0",
"babel-plugin-transform-es2015-classes": "^6.24.1",
"eslint": "^5.12.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-flowtype": "^3.2.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jest": "^22.1.3",
"flow-bin": "^0.91.0",
"flow-typed": "^2.5.1",
"jest": "^23.6.0",
"jest-extended": "^0.11.0",
"jest-immutable-matchers": "^2.0.1",
"regenerator-runtime": "^0.13.1",
"rollup": "^1.1.2",
"rollup-plugin-babel": "^4.3.2",
"rollup-plugin-clear": "^2.0.7",
"rollup-plugin-commonjs": "^9.2.0",
"rollup-plugin-flow": "^1.1.1",
"rollup-plugin-flow-entry": "0.2.0",
"sinon": "^7.2.3"
},
"dependencies": {
"immutable": "4.0.0-rc.12",
"lodash": "^4.17.20",
"sendbird": "^3.0.93"
},
"jest": {
"setupTestFrameworkScriptFile": "jest-extended",
"transform": {
"^.+\\.(js|jsx|ts)$": "babel-jest"
}
}
}