This repository has been archived by the owner on Aug 18, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpackage.json
99 lines (99 loc) · 3.21 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"name": "@pusher/chatkit-client",
"description": "Pusher Chatkit client SDK for browsers and react native",
"main": "dist/web/chatkit.js",
"version": "1.14.1",
"author": "Pusher",
"license": "MIT",
"homepage": "/~https://github.com/pusher/chatkit-client-js",
"bugs": {
"url": "/~https://github.com/pusher/chatkit-client-js/issues"
},
"repository": {
"type": "git",
"url": "git+/~https://github.com/pusher/chatkit-client-js.git"
},
"devDependencies": {
"@pusher/chatkit-server": "^2.0.1",
"@pusher/platform": "^0.18.0",
"@pusher/push-notifications-web": "^0.9.2",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-plugin-external-helpers": "^6.22.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.6.1",
"babel-preset-es2015": "^6.24.1",
"babelify": "^8.0.0",
"browserify": "^15.2.0",
"eslint": "^5.8.0",
"eslint-config-prettier": "^3.1.0",
"eslint-plugin-prettier": "^3.0.0",
"jest": "^24.8.0",
"jest-puppeteer": "^4.2.0",
"jsonwebtoken": "^8.5.1",
"prettier": "1.14.3",
"publish-please": "^5.2.0",
"puppeteer": "^1.18.1",
"ramda": "^0.25.0",
"request": "^2.88.0",
"request-promise": "^4.2.4",
"rollup": "^0.55.3",
"rollup-plugin-alias": "^1.4.0",
"rollup-plugin-babel": "^3.0.3",
"rollup-plugin-commonjs": "^8.3.0",
"rollup-plugin-json": "^2.3.0",
"rollup-plugin-node-resolve": "^3.0.2",
"rollup-plugin-uglify": "^3.0.0",
"snazzy": "^7.0.0",
"tap-colorize": "^1.2.0",
"tape": "^4.8.0",
"got": "^9.6.0"
},
"scripts": {
"lint": "eslint src tests/integration tests/unit rollup",
"format": "prettier --write src/**/*.js tests/**/*.js rollup/**/*.js example/**/*.js",
"build": "yarn build:web && yarn build:react-native",
"build:web": "rollup -c rollup/web.js",
"build:react-native": "rollup -c rollup/react-native.js",
"test:unit": "set -e; for file in tests/unit/*.js; do printf '\\n\\e[1;34m%s\\e[0m\\n' $file; browserify $file -t [ babelify --presets env --plugins transform-object-rest-spread ] | node script/puppeteer-run; done",
"test:integration": "browserify tests/integration/main.js -t [ babelify --presets env --plugins transform-runtime transform-object-rest-spread ] | node script/puppeteer-run",
"test": "yarn test:unit && yarn test:integration && jest",
"lint:build": "clear && yarn lint && clear && yarn build",
"lint:build:test": "yarn lint:build && clear && yarn test",
"lint:test:unit": "yarn lint && clear && yarn test:unit",
"publish-please": "publish-please",
"prepublishOnly": "publish-please guard"
},
"prettier": {
"semi": false,
"trailingComma": "all"
},
"resolutions": {
"**/**/lodash": "^4.17.13"
},
"eslintConfig": {
"extends": [
"prettier",
"eslint:recommended"
],
"plugins": [
"prettier"
],
"rules": {
"prettier/prettier": "error"
},
"parserOptions": {
"sourceType": "module",
"ecmaVersion": 2018
},
"env": {
"browser": true,
"es6": true
}
},
"jest": {
"preset": "jest-puppeteer",
"testRegex": "/tests/jest/[^/]*js$"
}
}