forked from open-xml-templating/docxtemplater
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
86 lines (86 loc) · 2.95 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
{
"name": "docxtemplater",
"version": "3.6.5",
"author": "Edgar Hipp",
"description": ".docx generator working with templates and data (like Mustache)",
"contributors": [
{
"name": "Edgar Hipp"
}
],
"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": {
"angular-expressions": "^0.3.0",
"babel-cli": "^6.26.0",
"babel-eslint": "^8.2.3",
"babel-loader": "^7.1.4",
"babel-preset-env": "^1.7.0",
"babel-preset-stage-3": "^6.24.1",
"chai": "^4.1.2",
"envify": "^4.1.0",
"es6-promise": "^4.2.4",
"eslint": "^4.19.1",
"eslint-plugin-dependencies": "^2.4.0",
"eslint_d": "^5.3.1",
"finalhandler": "^1.1.1",
"jszip": "^2.6.1",
"lodash": "^4.17.10",
"mkdirp": "^0.5.1",
"mocha": "^5.2.0",
"nyc": "^11.8.0",
"prettier": "^1.12.1",
"rimraf": "^2.6.2",
"selenium-standalone": "^6.14.1",
"serve-static": "^1.13.2",
"uglify-js": "^3.3.27",
"webdriverio": "^4.12.0",
"webpack": "^4.8.3",
"webpack-cli": "^2.1.4"
},
"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 && 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"
}
}