This repository has been archived by the owner on Feb 18, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
85 lines (85 loc) · 2.28 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
{
"name": "gulp-butternut",
"description": "Minify files with butternut.",
"version": "1.0.0",
"author": "Erik Zettersten <erik@emoney.com>",
"bugs": "https://github.com/etsms/gulp-butternut/issues",
"dependencies": {
"gulplog": "^1.0.0",
"has-gulplog": "^0.1.0",
"lodash": "^4.13.1",
"make-error-cause": "^1.1.1",
"through2": "^2.0.0",
"butternut": "~0.4.4",
"vinyl-sourcemaps-apply": "^0.2.0"
},
"devDependencies": {
"coveralls": "^2.11.4",
"eslint": "^6.6.0",
"eslint-config-prettier": "^1.5.0",
"eslint-config-xo": "^0.18.1",
"eslint-plugin-no-use-extend-native": "^0.3.12",
"eslint-plugin-prettier": "^2.0.1",
"eslint-plugin-unicorn": "^2.1.0",
"gulp-concat": "^2.0.0",
"gulp-sourcemaps": "^2.6.0",
"intelli-espower-loader": "^1.0.1",
"istanbul": "^0.4.0",
"mississippi": "^1.2.0",
"mocha": "^3.0.1",
"prettier": "^1.1.0",
"power-assert": "^1.4.1",
"semver": "^5.3.0",
"tape": "^4.0.0",
"testdouble": "^2.1.2",
"vinyl": "^2.0.0"
},
"homepage": "https://github.com/etsms/gulp-butternut/",
"keywords": [
"gulpplugin"
],
"license": "MIT",
"main": "index.js",
"repository": "etsms/gulp-butternut",
"eslintConfig": {
"env": {
"node": true
},
"extends": [
"xo",
"prettier"
],
"plugins": [
"unicorn",
"no-use-extend-native",
"prettier"
],
"rules": {
"prettier/prettier": [
"error",
{
"printWidth": 80,
"tabWidth": 2,
"singleQuote": true,
"trailingComma": "none",
"bracketSpacing": false
}
]
}
},
"files": [
"index.js",
"minifier.js",
"lib/"
],
"scripts": {
"lint": "eslint *.js lib test",
"test": "mocha --require intelli-espower-loader",
"coverage": "cat ./coverage/lcov.info | coveralls"
},
"greenkeeper": {
"ignore": [
"gulp-sourcemaps"
]
}
}