-
Notifications
You must be signed in to change notification settings - Fork 175
/
package.json
91 lines (91 loc) · 2.42 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
{
"name": "shariff",
"version": "3.3.1",
"description": "Shariff enables website users to share their favorite content without compromising their privacy.",
"main": "src/js/shariff.js",
"scripts": {
"dev": "webpack-dev-server --hot --inline --port 3000 --content-base demo --entry app=./demo/app.js",
"test": "eslint src && karma start --single-run",
"build": "rm -fr dist && webpack -p",
"build_zip": "7z a -tzip $BASE_NAME.zip ./dist/* && 7z a -ttar $BASE_NAME.tar ./dist/* && 7z a $BASE_NAME.tar.gz $BASE_NAME.tar",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "https://github.com/heiseonline/shariff"
},
"author": {
"name": "Ines Pauer",
"email": "ipa@heise.de"
},
"contributors": [
{
"name": "Philipp Busse",
"email": "pmb@heise.de"
},
{
"name": "Sebastian Hilbig",
"email": "seh@heise.de"
},
{
"name": "Erich Kramer",
"email": "km@heise.de"
},
{
"name": "Deniz Sesli",
"email": "dzs@heise.de"
}
],
"dependencies": {
"@fortawesome/fontawesome-free": "^6.6.0",
"jquery": "^3.4.1"
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"homepage": "https://github.com/heiseonline/shariff",
"devDependencies": {
"autoprefixer": "^8.6.5",
"babel-core": "^6.26.3",
"babel-loader": "^7.1.5",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.7.0",
"css-loader": "^0.28.11",
"eslint": "^4.19.1",
"eslint-config-standard": "^11.0.0",
"eslint-plugin-import": "^2.17.3",
"eslint-plugin-node": "^6.0.1",
"eslint-plugin-promise": "^3.8.0",
"eslint-plugin-standard": "^3.1.0",
"extract-text-webpack-plugin": "^3.0.2",
"file-loader": "^1.1.11",
"husky": ">=6",
"karma": "^4.1.0",
"karma-chrome-launcher": "^2.2.0",
"karma-mocha": "^1.3.0",
"karma-mocha-reporter": "^2.2.5",
"karma-phantomjs-launcher": "^1.0.4",
"karma-webpack": "^2.0.13",
"less": "^3.9.0",
"less-loader": "^4.1.0",
"lint-staged": ">=10",
"mocha": "^5.2.0",
"postcss-loader": "^2.1.6",
"style-loader": "^0.23.1",
"url-loader": "^1.1.2",
"webpack": "^3.12.0",
"webpack-dev-server": "^2.11.5"
},
"browserify-shim": {
"./dom": "global:jQuery"
},
"keywords": [
"heise",
"social buttons",
"shariff"
],
"license": "MIT",
"lint-staged": {
"*.js": "eslint --cache --fix"
}
}