-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
executable file
·63 lines (63 loc) · 1.94 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
{
"name": "amio-chat-sdk-web",
"version": "1.6.3",
"description": "Amio Chat JavaScript SDK for custom webchat implementation. https://amio.io",
"main": "lib/amio-chat-sdk-web.js",
"module": "src/amio-chat-client.js",
"scripts": {
"build": "webpack --env dev && webpack --env build",
"dev": "webpack --progress --colors --watch --env dev",
"test": "mocha --require babel-register --colors ./test/*.spec.js",
"test:watch": "mocha --require babel-register --colors -w ./test/*.spec.js",
"test:cover": "cross-env NODE_ENV=test nyc mocha --require babel-register --colors test/*.js",
"repl": "node -i -e \"$(< ./lib/amio-chat-sdk-web.js)\"",
"can-publish-nix": "npm info $npm_package_name version | npm-version-bump-checker"
},
"repository": {
"type": "git",
"url": "https://github.com/amio-io/amio-chat-sdk-web"
},
"keywords": [
"amio",
"amio.io",
"webchat",
"livechat"
],
"author": "Amio.io",
"license": "MIT",
"bugs": {
"url": "https://github.com/amio-io/amio-chat-sdk-web/issues"
},
"homepage": "https://github.com/amio-io/amio-chat-sdk-web",
"dependencies": {
"socket.io-client": "2.2.0"
},
"devDependencies": {
"@babel/cli": "7.2.3",
"@babel/core": "7.2.2",
"@babel/preset-env": "7.2.3",
"babel-eslint": "8.2.6",
"babel-loader": "8.0.5",
"babel-plugin-add-module-exports": "0.2.1",
"babel-plugin-istanbul": "5.1.1",
"babel-preset-env": "7.0.0-beta.3",
"babel-register": "7.0.0-beta.3",
"chai": "4.1.2",
"cross-env": "5.2.0",
"eslint": "5.12.0",
"eslint-loader": "2.1.1",
"jsdom": "14.0.0",
"jsdom-global": "zatziky/jsdom-global#default-url-in-register",
"mocha": "6.1.3",
"npm-version-bump-checker": "1.0.4",
"nyc": "13.1.0",
"uglifyjs-webpack-plugin": "1.3.0",
"webpack": "4.28.4",
"webpack-cli": "3.2.1",
"yargs": "10.1.2"
},
"nyc": {
"sourceMap": false,
"instrument": false
}
}