forked from formio/formio.js
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
112 lines (112 loc) · 2.76 KB
/
package.json
File metadata and controls
112 lines (112 loc) · 2.76 KB
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
{
"name": "formiojs",
"version": "2.7.3",
"description": "Common js library for client side interaction with <form.io>",
"main": "build/formio.js",
"files": [
"dist",
"build",
"utils.js",
"wizard.js",
"form.js",
"embed.js"
],
"scripts": {
"prepublish": "gulp build",
"build": "esdoc;gulp build",
"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"
},
"repository": {
"type": "git",
"url": "git+https://github.com/formio/formio.js.git"
},
"contributors": [
{
"name": "Travis Tidwell",
"email": "travis@form.io"
},
{
"name": "Randall Knutson",
"email": "randall@form.io"
},
{
"name": "Eric Alter",
"email": "neolanders@hotmail.com"
},
{
"name": "Guillaume SMAHA",
"email": "guillaume.smaha@gmail.com"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/formio/formio.js/issues"
},
"homepage": "https://github.com/formio/formio.js#readme",
"dependencies": {
"choices.js": "^2.7.8",
"eventemitter2": "^2.2.2",
"flatpickr": "^2.6.1",
"i18next": "^6.1.2",
"json-logic-js": "^1.1.0",
"lodash": "^4.17.4",
"moment": "^2.18.1",
"native-promise-only": "^0.8.1",
"shallow-copy": "0.0.1",
"signature_pad": "^1.6.0",
"text-mask-all": "github:text-mask/text-mask",
"whatwg-fetch": "^2.0.3"
},
"devDependencies": {
"babel-plugin-espower": "^2.3.2",
"babel-preset-es2015": "^6.18.0",
"babelify": "^7.3.0",
"browserify": "^11.2.0",
"chai": "^3.5.0",
"chance": "^0.8.0",
"del": "^2.0.2",
"fetch-mock": "^4.0.1",
"gulp": "^3.9.0",
"gulp-babel": "^6.1.2",
"gulp-clean-css": "^2.3.2",
"gulp-concat": "^2.6.1",
"gulp-filter": "^5.0.0",
"gulp-jshint": "^1.11.2",
"gulp-load-plugins": "^1.0.0-rc.1",
"gulp-notify": "^2.2.0",
"gulp-rename": "^1.2.2",
"gulp-replace": "^0.5.4",
"gulp-sass": "^3.0.0",
"gulp-streamify": "^1.0.2",
"gulp-strip-debug": "^1.0.2",
"gulp-sync": "^0.1.4",
"gulp-uglify": "^1.1.0",
"gulp-watch": "^4.2.0",
"gulp-wrapper": "^0.1.5",
"karma": "^0.13.10",
"karma-browserify": "^5.1.1",
"karma-chrome-launcher": "^2.0.0",
"karma-mocha": "^1.3.0",
"karma-phantomjs-launcher": "^1.0.2",
"mocha": "^3.2.0",
"power-assert": "^1.4.2",
"sinon": "^1.17.7",
"vinyl-source-stream": "^1.1.0",
"watchify": "^3.9.0",
"written-number": "^0.5.0"
},
"browserify": {
"transform": [
[
"babelify",
{
"presets": [
"es2015"
]
}
]
]
}
}