-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 2 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 2 KB
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": "@evolvedbinary/lwdita",
"version": "3.3.2",
"description": "Tools and libraries for working with LwDITA",
"engines": {
"node": ">=22.16.0 <23",
"yarn": ">=4.2.2"
},
"private": true,
"workspaces": [
"packages/lwdita-xdita",
"packages/lwdita-ast"
],
"scripts": {
"start:dev": "nodemon",
"clean": "yarn workspaces foreach --parallel --recursive --from '@evolvedbinary/lwdita-*' run clean",
"build": "yarn clean && yarn workspaces foreach --recursive --from '@evolvedbinary/lwdita-*' run build",
"prepack": "yarn run build",
"example": "yarn workspace @evolvedbinary/lwdita-xdita run example",
"test": "mocha",
"test:watch": "mocha -w",
"generate-docs": "yarn workspaces foreach --parallel --recursive --from '@evolvedbinary/lwdita-*' run docs",
"lint": "yarn workspaces foreach --recursive --from '@evolvedbinary/lwdita-*' run lint",
"coverage": "rimraf coverage && nyc yarn mocha",
"coveralls": "nyc --reporter=text-lcov report | coveralls"
},
"repository": {
"type": "git",
"url": "git+https://github.com/evolvedbinary/lwdita.git"
},
"keywords": [
"LwDITA",
"DITA",
"XML",
"JSON"
],
"author": "Evolved Binary",
"license": "AGPL-3.0",
"bugs": {
"url": "https://github.com/evolvedbinary/lwdita/issues"
},
"homepage": "https://github.com/evolvedbinary/lwdita#readme",
"directories": {
"src": "./src",
"test": "./test"
},
"files": [
"dist"
],
"devDependencies": {
"@eslint/js": "^9.39.1",
"@tsconfig/recommended": "^1.0.13",
"@types/chai": "^5.2.3",
"@types/mocha": "^10.0.10",
"chai": "^6.2.1",
"coveralls": "^3.1.1",
"eslint": "^9.39.1",
"eslint-plugin-notice": "^1.0.0",
"eslint-plugin-tsdoc": "^0.5.0",
"globals": "^16.5.0",
"jiti": "^2.6.1",
"mocha": "^11.7.5",
"nodemon": "^3.1.11",
"nyc": "^17.1.0",
"rimraf": "^6.1.0",
"typescript": "5.9.3",
"typescript-eslint": "^8.47.0"
},
"packageManager": "yarn@4.2.2"
}