-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
69 lines (69 loc) · 1.96 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
{
"name": "@evolvedbinary/lwdita",
"version": "3.2.1",
"description": "Tools and libraries for working with LwDITA",
"engines": {
"node": ">=20.1.0 <21",
"yarn": ">=4.2.2"
},
"private": true,
"workspaces": [
"packages/lwdita-xdita",
"packages/lwdita-ast"
],
"scripts": {
"lint": "eslint packages/*",
"lint:fix": "eslint packages/* --fix",
"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",
"coverage": "rimraf coverage && nyc yarn mocha",
"coveralls": "nyc --reporter=text-lcov report | coveralls",
"generate-docs": "yarn workspaces foreach --recursive --from '@evolvedbinary/lwdita-*' run generate-docs"
},
"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": {
"@tsconfig/recommended": "^1.0.7",
"@types/chai": "^4.3.11",
"@types/mocha": "^10.0.9",
"@typescript-eslint/eslint-plugin": "^7.16.0",
"@typescript-eslint/parser": "^8.11.0",
"chai": "^4.3.10",
"coveralls": "^3.1.1",
"eslint": "^9.13.0",
"eslint-plugin-notice": "^1.0.0",
"eslint-plugin-tsdoc": "^0.3.0",
"mocha": "^10.7.3",
"nodemon": "^3.1.7",
"nyc": "^17.1.0",
"rimraf": "^6.0.1",
"typescript": "5.6.3"
},
"packageManager": "[email protected]"
}