forked from open-xml-templating/docxtemplater
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
97 lines (97 loc) · 3.31 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "docxtemplater",
"version": "3.9.1",
"author": "Edgar Hipp",
"description": ".docx generator working with templates and data (like Mustache)",
"contributors": [
{
"name": "Edgar Hipp"
}
],
"aliasify": {
"aliases": {
"xmldom": "./js/browser-versions/xmldom.js",
"fs": "./js/browser-versions/fs.js"
}
},
"main": "js/docxtemplater.js",
"keywords": [
"docx",
"templates",
"generation",
"microsoft word"
],
"repository": {
"type": "git",
"url": "https://github.com/open-xml-templating/docxtemplater"
},
"dependencies": {
"xmldom": "^0.1.27"
},
"devDependencies": {
"@babel/cli": "^7.1.2",
"@babel/core": "^7.1.2",
"@babel/plugin-proposal-class-properties": "^7.1.0",
"@babel/plugin-proposal-json-strings": "^7.0.0",
"@babel/plugin-syntax-dynamic-import": "^7.0.0",
"@babel/plugin-syntax-import-meta": "^7.0.0",
"@babel/preset-env": "^7.1.0",
"angular-expressions": "^1.0.0",
"babel-eslint": "^10.0.1",
"babel-loader": "^8.0.4",
"chai": "^4.2.0",
"diff": "^3.5.0",
"envify": "^4.1.0",
"es6-promise": "^4.2.5",
"eslint": "^5.7.0",
"eslint-plugin-dependencies": "^2.4.0",
"eslint_d": "^7.1.1",
"finalhandler": "^1.1.1",
"jszip": "^2.6.1",
"lodash": "^4.17.11",
"mkdirp": "^0.5.1",
"mocha": "^5.2.0",
"nyc": "^13.0.1",
"prettier": "^1.14.3",
"rimraf": "^2.6.2",
"selenium-standalone": "^6.15.3",
"serve-static": "^1.13.2",
"uglify-js": "^3.4.9",
"webdriverio": "^4.13.2",
"webpack": "^4.20.2",
"webpack-cli": "^3.1.2"
},
"license": "MIT",
"engines": {
"node": ">=0.10"
},
"scripts": {
"generate:doc": "cd docs; rm build/ -rf ; make html",
"profile": "./profile.bash",
"preversion": "npm run test:es6 && npm run lint && npm run prettier && FAST= npm test && rimraf build && mkdirp build && npm run browserify && npm run uglify && npm run verifypublishsize && npm run test:browser",
"check-casing": "./check-casing.bash",
"compile": "npm run convertto:es5",
"browserify:test": "FILE=test webpack",
"browserify:lib": "webpack",
"uglify:lib": "MIN=true webpack",
"uglify": "npm run uglify:lib",
"browserify": "npm run browserify:test && npm run browserify:lib",
"convertto:es5": "rimraf js -rf && mkdirp js && npm run babel && cp es6/tests/*.xml js/tests ",
"convertto:es5:watch": "npm run babel -- --watch",
"test:coverage": "nyc --reporter=html --reporter=text mocha -- es6/tests/index.js",
"prettier": "prettier --list-different 'es6/**/!(filenames).js' '*.js'",
"prettier:fix": "prettier --write 'es6/**/!(filenames).js' '*.js'",
"lint": "eslint_d . && ./check-casing.bash",
"lint:fix": "eslint_d . --fix && ./check-casing.bash",
"test:chrome": "BROWSER=CHROME ./webdriver.bash",
"test:firefox": "BROWSER=FIREFOX ./webdriver.bash",
"test:browser": "./webdriver.bash",
"babel": "babel es6 --out-dir js",
"mocha": "mocha --full-trace --check-leaks js/tests/index.js",
"test:es6": "mocha --full-trace --check-leaks es6/tests/index.js",
"test:es6:fast": "FAST=true mocha --full-trace --check-leaks es6/tests/index.js",
"test": "npm run convertto:es5 && npm run mocha",
"test:es5": "npm test",
"verifypublishsize": "./verifypublishsize.bash"
}
}