forked from tbluemel/rtf.js
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 2.3 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 2.3 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
{
"name": "rtf.js",
"version": "3.0.7",
"description": "Render RTF documents in HTML. This also includes rendering WMF and EMF images which are often contained in RTF documents.",
"main": "index.js",
"types": "./dist/src",
"scripts": {
"lint": "eslint ./src",
"fix": "eslint ./src --fix",
"clean": "rimraf dist",
"build": "npm run clean && webpack --config webpack/development.config.js --progress && webpack --config webpack/production.config.js --progress",
"watch": "npm run clean && webpack serve --config webpack/development.config.js --progress",
"generate-testcase": "node test/generate-testcase.js",
"regenerate-testcase": "node test/regenerate-testcase.js",
"test": "mocha test/test.js",
"coverage": "npm run clean && webpack --config webpack/coverage.config.js --progress && nyc mocha test/test.js",
"coverage-html": "rimraf coverage && nyc report --reporter html",
"coverage-coveralls": "nyc report --reporter text-lcov | coveralls",
"typewiz": "npm run clean && webpack --config webpack/typewiz.config.js --progress && npm run test",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tbluemel/rtf.js.git"
},
"keywords": [
"RTF"
],
"author": "Thomas Bluemel",
"license": "MIT",
"bugs": {
"url": "https://github.com/tbluemel/rtf.js/issues"
},
"homepage": "https://github.com/tbluemel/rtf.js#readme",
"devDependencies": {
"@jsdevtools/coverage-istanbul-loader": "^3.0.5",
"@typescript-eslint/eslint-plugin": "^4.20.0",
"@typescript-eslint/parser": "^4.20.0",
"chai": "^4.3.4",
"chai-html": "^1.3.0",
"copy-webpack-plugin": "^8.1.0",
"coveralls": "^3.1.0",
"eslint": "^7.23.0",
"jsdom": "^16.5.2",
"mocha": "^8.3.2",
"nyc": "^15.1.0",
"rimraf": "^3.0.2",
"ts-loader": "^8.1.0",
"typescript": "^4.2.3",
"typewiz-core": "^1.2.4",
"typewiz-webpack": "^1.2.4",
"webpack": "^5.30.0",
"webpack-cli": "^4.6.0",
"webpack-dev-server": "^4.0.0-beta.1",
"webpack-merge": "^5.7.3"
},
"dependencies": {
"codepage": "^1.14.0"
}
}