forked from formio/formio.js
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
139 lines (139 loc) · 3.68 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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
{
"name": "@kelsus/formiojs",
"version": "2.30.12",
"description": "Common js library for client side interaction with <form.io>",
"main": "lib/index.js",
"files": [
"dist",
"lib",
"utils.js",
"wizard.js",
"form.js",
"embed.js",
"full.js"
],
"scripts": {
"build": "esdoc;gulp build",
"lint": "eslint src",
"serve": "jekyll serve --config _config.yml,_config.dev.yml",
"test": "./node_modules/karma/bin/karma start --verbose --single-run",
"test:watch": "./node_modules/karma/bin/karma start --no-single-run --auto-watch",
"deploy": "npm version patch --message \"Deployment version %s [skip ci]\" && npm publish",
"preversion": "yarn && yarn run test",
"version": "yarn run build",
"postversion": "git push && git push --tags"
},
"repository": {
"type": "git",
"url": "git+https://github.com/formio/formio.js.git"
},
"contributors": [
{
"name": "Travis Tidwell",
"github": "https://github.com/travist",
"email": "[email protected]"
},
{
"name": "Randall Knutson",
"github": "https://github.com/randallknutson",
"email": "[email protected]"
},
{
"name": "Doug Lee",
"github": "https://github.com/douglaselee",
"email": "[email protected]"
},
{
"name": "Eric Alter",
"email": "[email protected]"
},
{
"name": "Guillaume SMAHA",
"email": "[email protected]"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/formio/formio.js/issues"
},
"homepage": "https://github.com/formio/formio.js#readme",
"dependencies": {
"browser-cookies": "^1.2.0",
"choices.js": "^3.0.4",
"dialog-polyfill": "^0.4.9",
"eventemitter2": "^5.0.1",
"flatpickr": "^4.4.3",
"font-awesome": "^4.7.0",
"i18next": "^11.2.3",
"json-logic-js": "^1.2.2",
"lodash": "^4.17.5",
"moment": "^2.22.0",
"native-promise-only": "^0.8.1",
"shallow-copy": "0.0.1",
"signature_pad": "^2.3.0",
"text-mask-addons": "^3.7.2",
"tooltip.js": "^1.1.7",
"vanilla-text-mask": "^5.0.1",
"whatwg-fetch": "^2.0.4"
},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-eslint": "^8.2.2",
"babel-plugin-array-includes": "^2.0.3",
"babel-plugin-espower": "^2.4.0",
"babel-plugin-transform-optional-chaining": "^7.0.0-beta.3",
"babel-preset-env": "^1.6.1",
"babelify": "^8.0.0",
"browserify": "^16.1.1",
"chai": "^4.1.2",
"chance": "^1.0.13",
"del": "^3.0.0",
"esdoc": "^1.0.4",
"esdoc-standard-plugin": "^1.0.0",
"eslint": "^4.19.1",
"eslint-config-formio": "^1.1.4",
"fetch-mock": "^6.0.1",
"gulp": "^3.9.0",
"gulp-babel": "^7.0.1",
"gulp-clean-css": "^3.9.2",
"gulp-concat": "^2.6.1",
"gulp-filter": "^5.1.0",
"gulp-jshint": "^2.1.0",
"gulp-load-plugins": "^1.0.0-rc.1",
"gulp-notify": "^3.2.0",
"gulp-rename": "^1.2.2",
"gulp-replace": "^0.6.1",
"gulp-sass": "^4.0.1",
"gulp-streamify": "^1.0.2",
"gulp-strip-debug": "^3.0.0",
"gulp-sync": "^0.1.4",
"gulp-uglify": "^3.0.0",
"gulp-watch": "^5.0.0",
"gulp-wrapper": "^1.0.0",
"jshint": "^2.9.5",
"karma": "^2.0.0",
"karma-browserify": "^5.2.0",
"karma-chrome-launcher": "^2.0.0",
"karma-mocha": "^1.3.0",
"karma-phantomjs-launcher": "^1.0.2",
"marked": "^0.3.19",
"mocha": "^5.0.5",
"power-assert": "^1.5.0",
"sinon": "^5.0.4",
"vinyl-source-stream": "^2.0.0",
"watchify": "^3.11.0",
"written-number": "^0.8.1"
},
"browserify": {
"transform": [
[
"babelify",
{
"presets": [
"env"
]
}
]
]
}
}