forked from heiseonline/embetty
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
101 lines (101 loc) · 2.63 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
100
101
{
"name": "@heise/embetty",
"version": "2.0.3",
"main": "index.js",
"license": "MIT",
"scripts": {
"build": "webpack -p",
"build:gh-pages": "./gh-pages.js",
"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",
"deploy:gh-pages": "yarn build:gh-pages && gh-pages -d .gh-pages",
"dev": "./dev-server.js",
"watch": "karma start",
"test": "karma start --single-run",
"lint": "eslint . --cache"
},
"husky": {
"hooks": {
"pre-commit": "yarn lint"
}
},
"author": {
"name": "Philipp Busse",
"email": "[email protected]"
},
"contributors": [
{
"name": "Jan Hofmann",
"email": "[email protected]"
},
{
"name": "Alexander Pluhar",
"email": "[email protected]"
}
],
"engines": {
"yarn": ">=1.3.2 <2.0.0"
},
"bugs": "https://github.com/heiseonline/embetty/issues",
"homepage": "https://github.com/heiseonline/embetty",
"files": [
"assets",
"dist",
"lib",
"polyfills.js",
"postcss.config.js",
"webpack.config.js"
],
"repository": {
"type": "git",
"url": "https://github.com/heiseonline/embetty"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
},
"dependencies": {
"core-js": "3",
"hogan.js": "^3.0.2",
"intersection-observer": "^0.7.0",
"regenerator-runtime": "^0.13.3",
"url-join": "^4.0.1",
"whatwg-fetch": "^3.0.0"
},
"devDependencies": {
"@babel/core": "^7.6.4",
"@babel/plugin-proposal-object-rest-spread": "^7.6.2",
"@babel/preset-env": "^7.6.3",
"@heise/embetty-server": "^1.2.7",
"@webcomponents/webcomponentsjs": "^2.2.10",
"autoprefixer": "^9.3.1",
"babel-loader": "^8.0.6",
"cache-loader": "^4.0.0",
"css-loader": "^1.0.0",
"eslint": "^6.5.1",
"eslint-config-standard": "^14.1.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-node": "^10.0.0",
"eslint-plugin-promise": "^4.0.0",
"eslint-plugin-standard": "^4.0.0",
"file-loader": "^4.0.0",
"fs-extra": "^8.0.1",
"gh-pages": "^2.0.1",
"husky": "^3.0.9",
"karma": "^4.1.0",
"karma-chrome-launcher": "^2.2.0",
"karma-mocha": "^1.3.0",
"karma-mocha-reporter": "^2.2.5",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^3.0.0",
"mocha": "^6.1.4",
"node-sass": "^4.7.2",
"postcss-loader": "^3.0.0",
"puppeteer": "^1.0.0",
"raw-loader": "^3.0.0",
"sass-loader": "^7.0.0",
"webpack": "^4.0.0",
"webpack-bundle-analyzer": "^3.0.3",
"webpack-cli": "^3.0.3",
"webpack-dev-server": "^3.0.0"
}
}