-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
101 lines (101 loc) · 2.64 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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"name": "@toreda/build-tools",
"version": "0.8.0",
"description": "",
"public": true,
"main": "./dist/index.js",
"typings": "./dist/index.d.ts",
"scripts": {
"test": "yarn jest --coverage",
"lint": "yarn lint:nofix",
"lint:nofix": "yarn eslint src/**.{js,ts} --quiet",
"lint:fix": "yarn eslint src/**/*.{js,ts,tsx} --quiet --fix",
"build": "yarn lint && yarn gulp",
"make:docs": "yarn typedoc docs --categorizeByGroup false --entryPoints ./src/index.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/toreda/build-tools.git"
},
"keywords": [
"build",
"build package",
"buildscript",
"gulp-eslint alternative",
"gulp",
"lightweight",
"toreda",
"typescript"
],
"author": "Toreda, Inc.",
"license": "MIT",
"bugs": {
"url": "https://github.com/toreda/build-tools/issues"
},
"homepage": "https://github.com/toreda/build-tools#readme",
"resolutions": {
"ansi-regex": "^5.0.1",
"glob-parent": "^5.1.2",
"lodash": "^4.17.21",
"minimist": "^1.2.6",
"node-fetch": "^2.6.7",
"simple-get": "^3.1.1"
},
"sideEffects": false,
"dependencies": {
"@swc-node/core": "^1.8.2",
"@swc-node/register": "^1.4.2",
"@swc/helpers": "^0.3.8",
"@swc/register": "^0.1.10",
"@swc/wasm": "^1.2.171",
"@toreda/eslint-config": "^2.2.0",
"@toreda/log": "^0.6.16",
"@toreda/prettier-config": "^1.0.1",
"@typescript-eslint/eslint-plugin": "^5.20.0",
"@typescript-eslint/parser": "^5.20.0",
"@typescript-eslint/typescript-estree": "^5.20.0",
"eslint": "^8.14.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"fs-extra": "^10.1.0",
"gulp": "^4.0.2",
"gulp-nunjucks-render": "^2.2.3",
"gulp-sourcemaps": "^3.0.0",
"gulp-swc": "^1.2.3",
"gulp-typescript": "^6.0.0-alpha.1",
"jest": "^27.5.1",
"jest-cli": "^27.5.1",
"jest-sonar-reporter": "^2.0.0",
"merge-stream": "^2.0.0",
"regenerator-runtime": "^0.13.9",
"swc-node": "^1.0.0",
"through2": "^4.0.2",
"ts-node": "^10.7.0",
"webpack": "^5.72.0",
"webpack-cli": "^4.9.2",
"yargs": "^17.4.1"
},
"prettier": "@toreda/prettier-config",
"devDependencies": {
"@swc/core": "^1.2.171",
"@swc/jest": "^0.2.20",
"@toreda/types": "^2.11.0",
"@types/fs-extra": "^9.0.13",
"@types/gulp": "^4.0.9",
"@types/gulp-sourcemaps": "^0.0.35",
"@types/jest": "^27.4.1",
"@types/mock-fs": "^4.13.1",
"@types/node": "^17.0.25",
"@types/through2": "^2.0.36",
"@types/webpack": "^5.28.0",
"@types/yargs": "^17.0.10",
"canvas": "^2.9.1",
"del": "^6.0.0",
"jsdom": "^19.0.0",
"mock-fs": "^5.1.2",
"prettier": "^2.6.2",
"typedoc": "^0.22.15",
"typescript": "^4.6.3",
"utf-8-validate": "^5.0.9"
}
}