-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
88 lines (88 loc) · 2.59 KB
/
Copy pathpackage.json
File metadata and controls
88 lines (88 loc) · 2.59 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
83
84
85
86
87
88
{
"name": "@ericmcornelius/ease",
"version": "0.5.5",
"description": "Simple babel transpilation, istanbul code coverage, mocha unit testing, and webpack building",
"main": "index.js",
"scripts": {
"prepare": "./build.sh",
"prepublishOnly": "./prepublish.sh",
"postpublish": "./postpublish.sh",
"test": "./bin/test.js test"
},
"repository": {
"type": "git",
"url": "https://github.com/ericmcornelius/ease.git"
},
"keywords": [
"babel",
"istanbul",
"mocha",
"webpack"
],
"author": "Eric Cornelius",
"bugs": {
"url": "https://github.com/ericmcornelius/ease/issues"
},
"homepage": "https://github.com/ericmcornelius/ease#readme",
"dependencies": {
"@babel/cli": "^7.4.4",
"@babel/core": "^7.4.5",
"@babel/plugin-proposal-class-properties": "^7.4.4",
"@babel/plugin-proposal-decorators": "^7.4.4",
"@babel/plugin-syntax-decorators": "^7.2.0",
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@babel/polyfill": "^7.4.4",
"@babel/preset-env": "^7.4.5",
"@babel/preset-react": "^7.0.0",
"anymatch": "^3.0.2",
"autoprefixer": "^9.5.1",
"babel-eslint": "^10.0.1",
"babel-loader": "^8.0.6",
"babel-plugin-istanbul": "^5.1.4",
"babel-plugin-transform-define": "^1.3.1",
"babel-plugin-transform-export-extensions": "^6.22.0",
"builtins": "^2.0.0",
"chai": "^4.2.0",
"css-loader": "^2.1.1",
"diff": "^4.0.1",
"eslint": "^5.16.0",
"istanbul-lib-coverage": "^2.0.5",
"istanbul-lib-instrument": "^3.3.0",
"istanbul-lib-report": "^2.0.8",
"istanbul-lib-source-maps": "^3.0.6",
"istanbul-reports": "^2.2.6",
"json-loader": "^0.5.7",
"junit-viewer": "^4.11.1",
"lodash": "^4.17.11",
"mkdirp": "^0.5.1",
"mocha": "^6.1.4",
"node-sass": "^4.12.0",
"postcss-loader": "^3.0.0",
"precss": "^4.0.0",
"raw-loader": "^2.0.0",
"react": "^16.8.6",
"react-hot-loader": "^4.8.8",
"sass-loader": "^7.1.0",
"shebang-loader": "0.0.1",
"shelljs": "^0.8.3",
"source-map-support": "^0.5.12",
"style-loader": "^0.23.1",
"svg-url-loader": "^2.3.2",
"url-loader": "^1.1.2",
"webpack": "^4.32.2",
"webpack-bundle-analyzer": "^3.3.2",
"webpack-dev-server": "^3.5.1",
"worker-loader": "^2.0.0",
"xml": "^1.0.1",
"yaml-loader": "^0.5.0",
"yargs": "^13.2.4"
},
"bin": {
"ease-test": "./bin/test.js",
"ease-run": "./bin/run.js",
"ease-run-web": "./bin/run-web.js",
"ease-bundle-node": "./bin/bundle-node.js",
"ease-bundle-web": "./bin/bundle-web.js",
"ease-version": "./bin/version.js"
}
}