This repository was archived by the owner on Feb 14, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.11 KB
/
package.json
File metadata and controls
82 lines (82 loc) · 2.11 KB
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
{
"name": "ec-scripts",
"version": "2.0.0",
"description": "eCentral Scripts for painless, modern JavaScript development.",
"author": "eCentral GmbH <info@ecentral.de>",
"contributors": [
"Felix Laukel <f.laukel@ecentral.de>",
"Marcus von Keil <m.vonkeil@ecentral.de>"
],
"keywords": [
"ec-scripts",
"project",
"generator"
],
"repository": {
"type": "git",
"url": "https://github.com/ecentral/ec-scripts.git"
},
"main": "lib/index.js",
"bin": {
"ec-scripts": "bin/ec-scripts.js"
},
"scripts": {
"lint": "eslint --ignore-path .gitignore --quiet ./",
"test": "npm run lint && jest"
},
"engines": {
"node": ">=8.0",
"npm": ">=5.0"
},
"license": "MIT",
"dependencies": {
"@babel/core": "^7.1.2",
"@babel/plugin-proposal-class-properties": "^7.1.0",
"@babel/plugin-syntax-dynamic-import": "^7.0.0",
"@babel/plugin-syntax-import-meta": "^7.0.0",
"@babel/polyfill": "7.0.0",
"@babel/preset-env": "^7.1.0",
"autoprefixer": "^8.0.0",
"babel-core": "7.0.0-bridge.0",
"babel-eslint": "^10.0.1",
"babel-jest": "^22.0.0",
"babel-loader": "^8.0.4",
"chalk": "^2.3.0",
"clean-webpack-plugin": "^0.1.18",
"console-clear": "^1.0.0",
"copy-webpack-plugin": "^4.5.1",
"cross-env": "^5.0.5",
"css-loader": "^0.28.10",
"eslint": "^4.18.1",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-loader": "^2.0.0",
"eslint-plugin-import": "^2.7.0",
"file-loader": "^1.1.9",
"glob": "^7.1.2",
"html-webpack-plugin": "^3.2.0",
"identity-obj-proxy": "^3.0.0",
"invariant": "^2.2.2",
"ip": "^1.1.5",
"jest": "^22.0.0",
"json-loader": "^0.5.7",
"json-query": "^2.2.2",
"mini-css-extract-plugin": "^0.4.4",
"path": "^0.12.7",
"postcss-loader": "^2.1.1",
"style-loader": "^0.20.3",
"url-loader": "^1.0.1",
"webpack": "^4.0.0",
"webpack-dev-server": "^3.0.0",
"yargs": "^10.0.3"
},
"devDependencies": {
"del": "^3.0.0"
},
"jest": {
"verbose": true,
"testEnvironment": "node",
"testMatch": [
"**/*.(spec|test).js"
]
}
}