This repository has been archived by the owner on Sep 16, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 2.19 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
{
"name": "@frontmeans/namespace-aliaser",
"version": "2.6.3",
"description": "Unique namespace aliases for XML, HTML, and CSS names",
"keywords": [
"namespace",
"unique-name",
"unique-id",
"qualified-name",
"library",
"typescript"
],
"homepage": "https://github.com/frontmeans/namespace-aliaser",
"repository": {
"type": "git",
"url": "ssh://git@github.com:frontmeans/namespace-aliaser.git"
},
"license": "MIT",
"author": "Ruslan Lopatin <ruslan.lopatin@gmail.com>",
"bugs": {
"url": "https://github.com/frontmeans/namespace-aliaser/issues"
},
"type": "module",
"types": "./dist/namespace-aliaser.d.ts",
"exports": {
"types": "./dist/namespace-aliaser.d.ts",
"default": "./dist/namespace-aliaser.js"
},
"sideEffects": false,
"dependencies": {
"@proc7ts/context-values": "7.1.1"
},
"devDependencies": {
"@jest/globals": "^29.7.0",
"@proc7ts/context-builder": "^7.0.2",
"@run-z/eslint-config": "^3.5.0",
"@run-z/prettier-config": "^2.0.0",
"@run-z/project-config": "^0.20.0",
"@swc/core": "^1.3.85",
"@swc/jest": "^0.2.29",
"@typescript-eslint/eslint-plugin": "^6.7.0",
"@typescript-eslint/parser": "^6.7.0",
"eslint": "^8.49.0",
"eslint-plugin-jest": "^27.4.0",
"gh-pages": "^6.0.0",
"jest": "^29.7.0",
"jest-junit": "^16.0.0",
"jest-mock": "^29.7.0",
"prettier": "^2.8.8",
"prettier-eslint-cli": "^7.1.0",
"rollup": "^3.29.2",
"run-z": "^1.11.1",
"ts-jest": "^29.1.1",
"tslib": "^2.6.2",
"typedoc": "^0.25.1",
"typescript": "~5.2.2"
},
"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-eslint --write --include-dot-files \"src/**/*.*\" \"*.{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"
}
}