Files
docx-js/package.json

91 lines
2.2 KiB
JSON
Raw Normal View History

2016-03-27 02:27:44 +01:00
{
2016-03-27 02:46:26 +01:00
"name": "docx",
2019-01-10 02:37:40 +00:00
"version": "4.6.0",
2016-03-27 02:46:26 +01:00
"description": "Generate .docx documents with JavaScript (formerly Office-Clippy)",
2016-05-10 15:26:36 +01:00
"main": "build/index.js",
2016-03-27 02:46:26 +01:00
"scripts": {
"pretest": "rimraf ./build",
2017-12-30 20:01:20 +00:00
"test": "mocha-webpack \"src/**/*.ts\"",
2018-10-26 20:30:42 +01:00
"test.coverage": "nyc npm test",
2018-10-26 20:11:40 +01:00
"test.watch": "npm test -- --watch",
2017-03-08 23:35:22 +00:00
"prepublishOnly": "npm run build",
"lint": "tslint --project .",
2018-02-02 01:56:08 +00:00
"build": "npm run webpack && npm run fix-types",
"tsc": "rimraf ./build && tsc -p .",
2017-12-22 16:49:25 +00:00
"webpack": "rimraf ./build && webpack",
"demo": "npm run build && npm run ts-node ./demo",
2018-08-08 22:51:54 +01:00
"typedoc": "typedoc src/index.ts",
2018-04-10 21:06:02 +01:00
"style": "prettier -l \"src/**/*.ts\"",
2018-10-26 20:11:40 +01:00
"style.fix": "npm run style -- --write",
2018-08-21 02:46:21 +01:00
"fix-types": "node types-absolute-fixer.js",
"ts-node": "ts-node"
2016-03-27 02:46:26 +01:00
},
2018-08-06 03:26:30 +01:00
"pre-commit": [
"style",
"lint"
],
2017-03-08 11:48:56 +01:00
"files": [
2017-12-15 00:01:59 +00:00
"src",
2017-03-13 20:35:27 +01:00
"build",
"template"
2017-03-08 11:48:56 +01:00
],
2016-03-27 02:46:26 +01:00
"repository": {
"type": "git",
"url": "git+https://github.com/dolanmiu/docx.git"
},
"keywords": [
2017-09-19 16:02:06 +01:00
"docx",
2016-03-27 02:46:26 +01:00
"office",
2017-03-14 11:28:05 +00:00
"word",
2016-03-27 02:46:26 +01:00
"generate",
2017-03-14 10:51:05 +00:00
"creator",
2017-03-14 11:33:46 +00:00
"create",
2016-03-27 02:46:26 +01:00
"document",
"doc",
"officegen",
"clippy"
2016-03-27 02:46:26 +01:00
],
2017-07-07 14:34:03 +01:00
"types": "./build/index.d.ts",
2016-03-27 02:46:26 +01:00
"dependencies": {
2018-08-29 18:36:48 +03:00
"@types/jszip": "^3.1.4",
2018-04-24 21:12:09 +01:00
"jszip": "^3.1.5",
2018-10-17 09:15:32 +03:00
"xml": "^1.0.1",
"xml-js": "^1.6.8"
2016-03-27 02:46:26 +01:00
},
"author": "Dolan Miu",
"license": "MIT",
"bugs": {
"url": "https://github.com/dolanmiu/docx/issues"
},
"homepage": "https://github.com/dolanmiu/docx#readme",
"devDependencies": {
"@types/chai": "^3.4.35",
"@types/mocha": "^2.2.39",
"@types/sinon": "^4.3.1",
2017-12-22 16:49:25 +00:00
"awesome-typescript-loader": "^3.4.1",
2016-03-29 00:35:13 +01:00
"chai": "^3.5.0",
2018-02-02 01:56:08 +00:00
"glob": "^7.1.2",
2018-10-26 20:11:40 +01:00
"istanbul-instrumenter-loader": "^3.0.1",
"jszip": "^3.1.5",
"mocha": "^5.2.0",
2017-12-30 20:01:20 +00:00
"mocha-webpack": "^1.0.1",
2018-10-26 20:11:40 +01:00
"nyc": "^13.1.0",
2018-08-06 03:26:30 +01:00
"pre-commit": "^1.2.2",
2018-11-11 22:54:35 +00:00
"prettier": "^1.15.2",
"prompt": "^1.0.0",
2018-02-02 01:56:08 +00:00
"replace-in-file": "^3.1.0",
2016-07-01 22:39:17 +01:00
"rimraf": "^2.5.2",
"shelljs": "^0.7.7",
"sinon": "^5.0.7",
2018-08-21 02:46:21 +01:00
"ts-node": "^7.0.1",
2018-08-07 01:38:15 +01:00
"tslint": "^5.11.0",
"tslint-immutable": "^4.9.0",
2018-07-21 01:21:28 +01:00
"typedoc": "^0.11.1",
2018-07-21 01:13:17 +01:00
"typescript": "2.9.2",
2017-12-22 16:49:25 +00:00
"webpack": "^3.10.0"
2018-08-31 11:25:05 -04:00
},
"engines": {
"node": ">=8"
2016-03-27 02:46:26 +01:00
}
}