-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 1.72 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
{
"name": "@perfective/build",
"version": "0.17.1",
"description": "Configurations and functions to build TypeScript projects",
"keywords": [
"es2015",
"es6",
"babel",
"build",
"gulp",
"jest",
"prettier",
"tsconfig",
"typescript"
],
"author": "Andrey Mikheychik <[email protected]>",
"homepage": "https://github.com/perfective/ts.build",
"repository": {
"type": "git",
"url": "git+https://github.com/perfective/ts.build.git"
},
"license": "MIT",
"type": "module",
"sideEffects": false,
"scripts": {
"dist": "gulp",
"lint": "npm run lint:prettier",
"lint:build": "npm run lint:prettier:build",
"lint:prettier": "prettier --write .",
"lint:prettier:build": "prettier --check ."
},
"peerDependencies": {
"@types/jest": "^29.5.14",
"gulp": "^5.0.0",
"jest": "^29.7.0",
"prettier": "^3.4.2",
"ts-jest": "^29.2.5",
"typescript": "~5.7.2"
},
"peerDependenciesMeta": {
"@types/jest": {
"optional": true
},
"jest": {
"optional": true
},
"prettier": {
"optional": true
},
"ts-jest": {
"optional": true
}
},
"dependencies": {
"@asciidoctor/gulp-asciidoctor": "^2.2.5",
"del": "^8.0.0",
"glob": "^11.0.0",
"gulp": "^5.0.0",
"gulp-babel": "^8.0.0",
"gulp-json-editor": "^2.6.0",
"gulp-rename": "^2.0.0",
"gulp-typescript": "^6.0.0-alpha.1"
},
"devDependencies": {
"prettier": "~3.4.2",
"typescript": "~5.7.2"
}
}