-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
74 lines (74 loc) · 2.02 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
{
"name": "gulp-rev-dist-clean",
"version": "3.2.3",
"description": "Clean temporary files created by gulp-rev",
"author": "Alexandre ABRIOUX",
"license": "MIT",
"keywords": [
"gulp",
"rev",
"clean",
"gulp-rev",
"gulp-rev-clean"
],
"homepage": "https://github.com/alexandre-abrioux/gulp-rev-clean#readme",
"bugs": {
"url": "https://github.com/alexandre-abrioux/gulp-rev-clean/issues"
},
"repository": {
"type": "git",
"url": "git@github.com:alexandre-abrioux/gulp-rev-dist-clean.git"
},
"main": "lib/cjs/index.js",
"module": "lib/esm/index.mjs",
"exports": {
".": {
"import": "./lib/mjs/index.js",
"require": "./lib/cjs/index.js"
}
},
"engines": {
"node": ">=10"
},
"scripts": {
"prepare": "husky install",
"clean": "rm -Rf dist lib coverage test/build",
"build": "./build.sh",
"watch": "tsc --watch",
"lint": "prettier --write . && eslint --fix .",
"test": "jest --coverage=true",
"test:lib": "jest --config jest.lib.config.ts",
"test:lint": "prettier --check --loglevel=warn . && eslint . && tsc --noEmit",
"dist": "packito --nopublish && cp -R src dist && cp -R lib dist"
},
"dependencies": {
"del": "^6.0.0",
"through2": "^4.0.2"
},
"devDependencies": {
"@types/gulp": "^4.0.9",
"@types/gulp-if": "0.0.34",
"@types/gulp-rev": "^5.0.32",
"@types/gulp-sourcemaps": "0.0.35",
"@types/jest": "^27.0.3",
"@types/through2": "^2.0.36",
"@typescript-eslint/eslint-plugin": "^5.6.0",
"@typescript-eslint/parser": "^5.6.0",
"eslint": "^8.4.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-jest": "^25.3.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"gulp": "^4.0.2",
"gulp-if": "^3.0.0",
"gulp-rev": "^9.0.0",
"gulp-sourcemaps": "^3.0.0",
"husky": "^7.0.4",
"jest": "^27.4.4",
"mocha-lcov-reporter": "^1.3.0",
"packito": "^0.5.0",
"prettier": "^2.5.1",
"ts-jest": "^27.1.1",
"ts-node": "^10.4.0",
"typescript": "^4.5.3"
}
}