-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
53 lines (53 loc) · 1.35 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
{
"name": "gulp-terser-js",
"version": "5.2.2",
"description": "A Terser-js plugin for Gulp",
"main": "bin/index.js",
"scripts": {
"lint": "eslint .",
"test": "mocha --reporter spec --bail --check-leaks test/",
"bootstrap:ci": "npm ci",
"test:ci": "mocha --reporter spec --check-leaks test/",
"report-coverage:ci": "nyc mocha --reporter spec && nyc report --reporter=text-lcov | coveralls"
},
"repository": {
"type": "git",
"url": "git://github.com/gulp-community/gulp-terser-js.git"
},
"files": [
"bin/",
"README.md",
"CHANGELOG.md",
"LICENSE"
],
"author": "A-312",
"keywords": [
"gulpplugin",
"gulp",
"terser"
],
"license": "MIT",
"homepage": "https://github.com/gulp-community/gulp-terser-js#readme",
"dependencies": {
"plugin-error": "^1.0.1",
"source-map": "^0.7.3",
"terser": "^4.6.12",
"through2": "^3.0.1",
"vinyl-sourcemaps-apply": "^0.2.1"
},
"devDependencies": {
"coveralls": "3.1.0",
"eslint": "6.8.0",
"eslint-config-standard": "14.1.1",
"eslint-plugin-import": "2.20.2",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-promise": "4.2.1",
"eslint-plugin-standard": "4.0.1",
"gulp": "4.0.2",
"gulp-concat": "^2.6.1",
"gulp-if": "^3.0.0",
"gulp-sourcemaps": "2.6.5",
"mocha": "7.1.2",
"nyc": "15.0.1"
}
}