forked from os-js/osjs-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 1.78 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
{
"name": "@osjs/client",
"version": "3.0.36",
"description": "OS.js v3 client",
"main": "dist/main.js",
"style": "dist/main.css",
"files": [
"dist/main.js",
"dist/main.js.map",
"dist/main.css",
"dist/main.css.map",
"dist/*.png",
"README.md",
"LICENSE"
],
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"eslint": "eslint index.js src/**/*.js",
"build": "webpack",
"watch": "webpack --watch",
"stylelint": "stylelint index.scss src/**/*.scss",
"prepublishOnly": "npm run eslint && npm run stylelint && rm ./dist/* && NODE_ENV=production npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/os-js/osjs-client.git"
},
"keywords": [
"osjs"
],
"dependencies": {
"@osjs/event-emitter": "^1.0.4"
},
"author": "Anders Evenrud <[email protected]>",
"license": "BSD-2-Clause",
"bugs": {
"url": "https://github.com/os-js/osjs-client/issues"
},
"homepage": "https://github.com/os-js/osjs-client#readme",
"devDependencies": {
"@babel/core": "^7.2.2",
"@babel/plugin-transform-runtime": "^7.2.0",
"@babel/preset-env": "^7.2.3",
"@babel/runtime": "^7.2.0",
"@osjs/common": "^3.0.1",
"babel-loader": "^8.0.5",
"css-loader": "^2.1.0",
"css-mediaquery": "^0.1.2",
"dateformat": "^3.0.3",
"deepmerge": "^3.0.0",
"eslint": "^5.12.0",
"file-loader": "^3.0.1",
"hyperapp": "^1.2.9",
"mini-css-extract-plugin": "^0.5.0",
"node-sass": "^4.11.0",
"optimize-css-assets-webpack-plugin": "^5.0.1",
"sass-loader": "^7.0.3",
"simplejsonconf": "^2.0.5",
"stylelint": "^9.9.0",
"stylelint-config-standard": "^18.2.0",
"stylelint-scss": "^3.4.4",
"webpack": "^4.28.3",
"webpack-cli": "^3.2.0"
}
}