-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
74 lines (74 loc) · 2.13 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
71
72
73
74
{
"name": "simple-odf",
"version": "3.0.3",
"description": "Open Document Format made easy using pure JavaScript and Node.js",
"keywords": [
"open",
"document",
"format",
"odf",
"odt",
"office"
],
"homepage": "https://github.com/connium/simple-odf#readme",
"bugs": {
"url": "https://github.com/connium/simple-odf/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/connium/simple-odf.git"
},
"license": "MIT",
"contributors": [
"Christoph Nölke",
"Thomas Parisot",
"Koen Verheyen",
"Cain Watson"
],
"files": [
"dist",
"package.json",
"CHANGELOG.md",
"LICENSE",
"README.md"
],
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"build": "tsc -p .",
"preversion": "npm test",
"postversion": "git push && git push --tags",
"prepublishOnly": "npm run build",
"pretest": "npm run build",
"posttest": "npm run lint",
"test": "jest --clearCache && jest",
"test:watch": "jest --clearCache && jest --watch",
"test:coverage": "jest --coverage",
"lint": "eslint './{examples,src,test}/**/*.{ts,tsx}'",
"format": "prettier --write './{examples,src,test}/**/*.{ts,js,json,md}'",
"docs": "rm -r ./dist && tsc && jsdoc2md --name-format --param-list-format list --separators --partial ./tools/jsdoc2md/body.hbs ./tools/jsdoc2md/params-list.hbs ./tools/jsdoc2md/returns.hbs ./tools/jsdoc2md/scope.hbs --files ./dist/api/**/*.js > ./docs/API.md"
},
"dependencies": {
"@xmldom/xmldom": "^0.8.3"
},
"devDependencies": {
"@semantic-release/changelog": "^6.0.1",
"@semantic-release/git": "^10.0.1",
"@types/jest": "^29.2.0",
"@types/node": "^14.18.36",
"@typescript-eslint/eslint-plugin": "^5.40.1",
"@typescript-eslint/parser": "^5.48.1",
"eslint": "^8.26.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^29.2.1",
"jsdoc-to-markdown": "^8.0.0",
"prettier": "2.8.8",
"semantic-release": "^19.0.5",
"ts-jest": "^29.0.4",
"typescript": "^5.0.4"
},
"engines": {
"node": ">=16 || ^14.17"
}
}