-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.73 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
{
"name": "httongue",
"version": "3.1.0",
"description": "Hypertext tongue",
"keywords": [
"css-escape",
"decode-uri-component",
"html-escape",
"rfc3869",
"xml-escape"
],
"homepage": "https://github.com/hatsyjs/httongue",
"repository": {
"type": "git",
"url": "ssh://git@github.com:hatsyjs/httongue.git"
},
"license": "MIT",
"author": "Ruslan Lopatin <ruslan.lopatin@gmail.com>",
"bugs": {
"url": "https://github.com/hatsyjs/httongue/issues"
},
"type": "module",
"types": "./dist/httongue.d.ts",
"exports": {
"types": "./dist/httongue.d.ts",
"default": "./dist/httongue.js"
},
"sideEffects": false,
"devDependencies": {
"@jest/globals": "^29.7.0",
"@run-z/eslint-config": "^5.0.0",
"@run-z/prettier-config": "^3.0.0",
"@run-z/project-config": "^0.20.4",
"@swc/core": "^1.7.26",
"@swc/jest": "^0.2.36",
"eslint": "^9.12.0",
"gh-pages": "^6.1.1",
"jest": "^29.7.0",
"jest-junit": "^16.0.0",
"prettier": "^3.3.3",
"rollup": "^4.24.0",
"run-z": "^2.1.0",
"ts-jest": "^29.2.5",
"tslib": "^2.7.0",
"typedoc": "^0.26.8",
"typescript": "~5.6.3"
},
"scripts": {
"all": "run-z build,lint,test",
"build": "run-z +z --then build-z",
"ci:all": "run-z all +test/--ci/--runInBand",
"clean": "run-z +z --then clean-z",
"doc": "run-z +z --then typedoc",
"doc:publish": "run-z doc --then gh-pages --dist target/typedoc --dotfiles",
"format": "run-z +z --then prettier --write \"*.{js,cjs,json,md}\"",
"lint": "run-z +z --then eslint .",
"test": "run-z +z env:NODE_OPTIONS=\"--experimental-vm-modules --no-warnings\" --then test-z",
"z": "run-z +cmd:build-z,+cmd:typedoc,+cmd:eslint,+cmd:test-z"
}
}