-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
75 lines (75 loc) · 2.07 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
{
"name": "@gasbuddy/web-dev",
"version": "13.0.0",
"description": "GasBuddy Platform for Web Projects - Dev time dependencies",
"main": "build/index.js",
"module": "src/index.js",
"scripts": {
"test": "tap --node-arg=-r --node-arg=@babel/register tests/test_*.js",
"cover": "cross-env BABEL_ENV=test nyc tap tests/test_*.js && nyc check-coverage",
"ci-test": "cross-env NODE_ENV=test nyc tap -Rtap tests/test_*.js | tee .tap_output | tap -Rspec -",
"ci-cover": "nyc check-coverage",
"ci-coveralls": "nyc report --reporter=text-lcov | coveralls",
"lint": "eslint .",
"prepublish": "npm run build",
"build": "babel src/ --out-dir build/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gas-buddy/web-dev.git"
},
"keywords": [
"web",
"react"
],
"author": "Max Metral",
"license": "MIT",
"bugs": {
"url": "https://github.com/gas-buddy/web-dev/issues"
},
"homepage": "https://github.com/gas-buddy/web-dev#readme",
"dependencies": {
"@loadable/webpack-plugin": "^5.13.0",
"babel-loader": "^8.1.0",
"css-loader": "^3.6.0",
"mini-css-extract-plugin": "^0.9.0",
"optimize-css-assets-webpack-plugin": "^5.0.3",
"postcss-import": "^12.0.1",
"postcss-loader": "^3.0.0",
"postcss-preset-env": "^6.7.0",
"style-loader": "^1.2.1",
"terser-webpack-plugin": "^3.0.7",
"webpack": "^4.43.0",
"webpack-bundle-analyzer": "^3.8.0",
"webpack-cli": "^3.3.12",
"webpack-dev-middleware": "^3.7.2",
"webpack-hot-middleware": "^2.25.0",
"webpack-manifest-plugin": "^2.2.0"
},
"devDependencies": {
"@babel/cli": "^7.10.5",
"@babel/register": "^7.10.5",
"@gasbuddy/react": "^8.2.0",
"babel-preset-gasbuddy": "^6.0.0",
"eslint-config-gasbuddy": "^5.3.0",
"tap": "^14.10.7"
},
"nyc": {
"lines": 75,
"statements": 75,
"functions": 75,
"branches": 45,
"include": [
"src"
],
"require": [
"@babel/register"
],
"sourceMap": false,
"instrument": false,
"reporter": [
"text",
"lcov"
]
}
}