-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
52 lines (52 loc) · 1.45 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
{
"name": "formio-export",
"version": "0.3.0",
"description": "Formio Export Tools",
"main": "lib/formio-export.js",
"directories": {
"lib": "lib",
"test": "test"
},
"scripts": {
"build": "webpack --env dev && webpack --env build && npm run test",
"dev": "webpack --progress --colors --watch --env dev",
"test": "mocha --require jsdom-global/register --require babel-core/register --colors ./test/*.spec.js",
"test:watch": "mocha --require jsdom-global/register --require babel-core/register --colors -w ./test/*.spec.js"
},
"repository": {
"type": "git",
"url": "https://github.com/airarrazaval/formio-export.git"
},
"keywords": [
"javascript",
"formio",
"formiojs"
],
"author": "Alfredo Irarrazaval",
"license": "MIT",
"bugs": {
"url": "https://github.com/airarrazaval/formio-export/issues"
},
"homepage": "https://github.com/airarrazaval/formio-export#readme",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-eslint": "^8.2.3",
"babel-loader": "^7.1.4",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-preset-env": "^1.6.1",
"chai": "^4.1.2",
"eslint": "^4.19.1",
"eslint-loader": "^2.0.0",
"jsdom": "^11.10.0",
"jsdom-global": "^3.0.2",
"mocha": "^5.1.1",
"webpack": "^4.6.0",
"webpack-cli": "^2.1.2",
"yargs": "^11.0.0"
},
"dependencies": {
"js-html2pdf": "^1.1.4",
"lodash": "^4.17.10"
}
}