-
Notifications
You must be signed in to change notification settings - Fork 29
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.65 KB
/
package.json
File metadata and controls
82 lines (82 loc) · 2.65 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
{
"name": "vellum",
"version": "1.6.0",
"description": "A JavaRosa XForms designer",
"authors": [
"Dimagi <dev@dimagi.com>"
],
"license": "MIT",
"homepage": "https://github.com/dimagi/Vellum",
"keywords": [
"XForms"
],
"repository": {
"type": "git",
"url": "https://github.com/dimagi/Vellum.git"
},
"dependencies": {
"at.js": "1.5.4",
"Caret.js": "INTELOGIE/Caret.js#0.3.1",
"XMLWriter": "dimagi/XMLWriter#master",
"bootstrap": "3.4.1",
"codemirror": "5.61.1",
"crypto-js": "4.2.0",
"fuse.js": "2.7.4",
"jquery": "3.6.0",
"jstree": "3.3.11",
"jstree-actions": "0.2.1",
"langcodes": "dimagi/langcodes#master",
"markdown-it": "12.3.2",
"select2": "4.1.0-rc.0",
"underscore": "1.13.1",
"xpath": "dimagi/js-xpath#v0.0.10"
},
"devDependencies": {
"chai": "4.2.0",
"chai-string": "2.0.0",
"css-loader": "7.1.2",
"csso": ">=1.3.11",
"equivalent-xml-js": "dimagi/equivalent-xml-js#v0.1.0",
"exports-loader": "5.0.0",
"http-server": "^14.1.0",
"jsdiff": "components/jsdiff#master",
"jshint": "^2.13.6",
"less": "3.10.3",
"less-loader": "12.2.0",
"minimist": "^1.2.8",
"mocha": "10.2.0",
"mocha-headless-chrome": "4.0.0",
"style-loader": "4.0.0",
"webpack": "5.94.0",
"webpack-cli": "5.1.4",
"webpack-merge": "6.0.1"
},
"main": "src/main.js",
"scripts": {
"dev": "webpack --mode development --config webpack/webpack.dev.js --watch",
"build": "webpack --mode production --config webpack/webpack.prod.js",
"testserver": "http-server -p ${VELLUM_PORT:-8088}",
"testbuild": "webpack --mode development --config webpack/webpack.dev.js",
"test:mocha": "node_modules/mocha-headless-chrome/bin/start -f http://localhost:${VELLUM_PORT:-8088}/ -t 500000",
"test:lint": "jshint src && jshint --config tests/.jshintrc tests",
"test": "npm run test:mocha && npm run test:lint"
},
"resolutions": {
"ansi-regex": "^4.1.1",
"async": "^3.2.2",
"form-data": "^2.5.4",
"getobject": "^1.0.0",
"grunt": "^1.3.0",
"js-yaml": "^3.14.2",
"json-schema": "^0.4.0",
"lodash": "^4.17.19",
"mime": "^1.4.1",
"minimatch": "^3.0.2",
"mocha-headless-chrome/puppeteer/tar-fs": "^2.1.4",
"qs": "^6.0.4",
"request": "^2.88.2",
"serialize-javascript": "^6.0.2",
"set-value": "^4.0.1",
"ws": "^5.2.3"
}
}