forked from evolvedbinary/lwdita
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.32 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
{
"name": "jdita",
"version": "0.2.4",
"description": "Converts LwDITA XDITA format into JSON (a.k.a JDITA)",
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"scripts": {
"lint": "eslint src --ext .ts",
"lint:fix": "eslint src --ext .ts --fix",
"start:dev": "nodemon",
"build": "rimraf ./lib && tsc",
"start": "ts-node ./src/example.ts",
"test": "mocha",
"test:watch": "mocha -w",
"coverage": "rimraf coverage && nyc yarn mocha"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ccheraa/jdita.git"
},
"keywords": [
"LwDITA",
"DITA",
"XML",
"JSON"
],
"author": "Evolved Binary",
"license": "AGPL-3.0",
"bugs": {
"url": "https://github.com/ccheraa/jdita/issues"
},
"homepage": "https://github.com/ccheraa/jdita#readme",
"directories": {
"src": "./src",
"test": "./test"
},
"files": [
"lib"
],
"dependencies": {
"saxes": "^5.0.1"
},
"devDependencies": {
"@types/chai": "^4.2.11",
"@types/mocha": "^7.0.2",
"@typescript-eslint/eslint-plugin": "^2.30.0",
"@typescript-eslint/parser": "^2.30.0",
"chai": "^4.2.0",
"eslint": "^6.8.0",
"mocha": "^8.1.3",
"nodemon": "^2.0.3",
"nyc": "^15.1.0",
"rimraf": "^3.0.2",
"ts-node": "^8.10.2",
"typescript": "^4.0.3"
}
}