-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
63 lines (63 loc) · 1.54 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
{
"name": "gulp-yarn",
"type": "commonjs",
"version": "4.0.1",
"description": "Automatically install node modules using Yarn.",
"author": "Malindu Warapitiya <warapitiya93@gmail.com>",
"license": "MIT",
"homepage": "https://github.com/warapitiya/gulp-yarn",
"repository": {
"type": "git",
"url": "git://github.com/warapitiya/gulp-yarn.git"
},
"bugs": {
"url": "https://github.com/warapitiya/gulp-yarn/issues"
},
"keywords": [
"gulpplugin",
"yarn",
"yarnpkg",
"gulp",
"install"
],
"main": "lib/index.js",
"typings": "index.d.ts",
"engines": {
"node": ">=14"
},
"scripts": {
"build": "tsc",
"coveralls": "tap test --ts --coverage-report=text-lcov | coveralls",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"release": "standard-version",
"test": "tap test --ts",
"test:only": "tap test --ts -O",
"test:report": "tap test --ts --coverage-report=html"
},
"dependencies": {
"plugin-error": "^2.0.0",
"which": "^2.0.2"
},
"devDependencies": {
"@antfu/eslint-config": "^0.27.0",
"@types/node": "^18.7.23",
"@types/sinon": "^10.0.13",
"@types/tap": "^15.0.7",
"@types/vinyl": "^2.0.6",
"@types/which": "^2.0.1",
"coveralls": "^3.1.1",
"eslint": "^8.24.0",
"eslint-plugin-import": "^2.26.0",
"mock-spawn": "^0.2.6",
"sinon": "^14.0.0",
"standard-version": "^9.0.0",
"tap": "^16.3.0",
"ts-node": "^10.9.1",
"typescript": "^4.8.4",
"vinyl": "^2.1.0"
},
"tap": {
"check-coverage": false
}
}