forked from kiwiirc/plugin-conference
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·39 lines (39 loc) · 990 Bytes
/
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
{
"name": "conference-kiwiirc-plugin",
"version": "1.0.0",
"main": "plugin-conference.js",
"license": "Apache",
"private": true,
"scripts": {
"build": "webpack",
"watch": "webpack --watch",
"serve": "webpack-dev-server",
"test": "xo",
"lint:eslint": "eslint --ext .js ./",
"lint": "npm run lint:eslint"
},
"dependencies": {
"@babel/core": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"babel-core": "^6.26.3",
"babel-loader": "^8.0.2",
"babel-preset-env": "^1.7.0",
"platform": "^1.3.5",
"regenerator-runtime": "^0.13.1"
},
"devDependencies": {
"css-loader": "^0.28.11",
"eslint": "^5.4.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-config-standard": "^11.0.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-node": "^7.0.1",
"eslint-plugin-promise": "^4.0.0",
"eslint-plugin-standard": "^3.1.0",
"style-loader": "^0.20.3",
"webpack": "^4.8.3",
"webpack-cli": "^2.0.13",
"webpack-dev-server": "^3.1.1",
"xo": "^0.20.3"
}
}