-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
101 lines (101 loc) · 3.27 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
{
"name": "@formio/core",
"version": "2.0.0-rc.24",
"description": "The core Form.io renderering framework.",
"main": "lib/index.js",
"exports": {
".": "./lib/index.js",
"./utils": "./lib/utils/index.js",
"./sdk": "./lib/sdk/index.js",
"./process": "./lib/process/index.js",
"./types": "./lib/types/index.js",
"./experimental": "./lib/experimental/index.js",
"./dist/formio.core.min.js": "./dist/formio.core.min.js"
},
"scripts": {
"test": "TEST=1 mocha -r ts-node/register -r tsconfig-paths/register -r mock-local-storage -r jsdom-global/register -b -t 0 'src/**/__tests__/*.test.ts'",
"lib": "tsc --project tsconfig.json && tsc-alias -p tsconfig.json",
"replace": "node -r tsconfig-paths/register -r ts-node/register ./lib/base/array/ArrayComponent.js",
"test:debug": "mocha -r ts-node/register -r tsconfig-paths/register -r mock-local-storage -r jsdom-global/register --debug-brk --inspect '**/*.spec.ts'",
"docs": "./node_modules/typedoc/bin/typedoc --exclude '*.spec.ts' src/*.ts src/**/*.ts src/**/**/*.ts",
"build:dev": "webpack --config config/webpack.config.js",
"build:prod": "webpack --config config/webpack.prod.js",
"clean": "rm -rf lib && rm -rf dist && rm -rf docs",
"build": "npm run clean && gulp templates && npm run docs && npm run lib && npm run build:dev && npm run build:prod",
"prepublish": "npm run build && npm run test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/formio/core.git"
},
"keywords": [
"The",
"core",
"Form.io",
"rendering",
"framework."
],
"author": "Travis Tidwell <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/formio/core/issues"
},
"files": [
"dist",
"lib",
"types.js",
"types.d.ts"
],
"homepage": "https://github.com/formio/core#readme",
"devDependencies": {
"@types/chai": "^4.3.10",
"@types/chance": "^1.1.6",
"@types/dompurify": "^3.0.5",
"@types/fetch-mock": "^7.3.8",
"@types/flatpickr": "^3.1.2",
"@types/inputmask": "^5.0.7",
"@types/lodash": "^4.14.201",
"@types/lodash.template": "^4.5.3",
"@types/mocha": "^10.0.4",
"@types/power-assert": "^1.5.11",
"@types/sinon": "^17.0.1",
"@types/uuid": "^9.0.7",
"chai": "^4.3.10",
"chance": "^1.1.8",
"fetch-mock": "^9.11.0",
"gulp": "^4.0.2",
"gulp-insert": "^0.5.0",
"gulp-rename": "^2.0.0",
"gulp-template": "^5.0.0",
"jsdom": "^22.1.0",
"jsdom-global": "^3.0.2",
"mocha": "^10.0.0",
"mocha-jsdom": "^2.0.0",
"mock-local-storage": "^1.1.20",
"power-assert": "^1.6.1",
"sinon": "^17.0.1",
"ts-loader": "^9.5.0",
"ts-node": "^10.5.0",
"tsc-alias": "^1.8.8",
"tsconfig-paths": "^4.1.2",
"tsconfig-paths-webpack-plugin": "^4.1.0",
"typedoc": "^0.25.3",
"typescript": "^5.2.2",
"webpack": "^5.89.0",
"webpack-cli": "^5.1.4"
},
"dependencies": {
"@types/json-logic-js": "^2.0.5",
"browser-cookies": "^1.2.0",
"core-js": "^3.33.2",
"dayjs": "^1.11.10",
"dompurify": "^3.0.6",
"eventemitter3": "^5.0.0",
"fast-json-patch": "^3.1.1",
"fetch-ponyfill": "^7.1.0",
"inputmask": "^5.0.9-beta.45",
"json-logic-js": "^2.0.2",
"lodash": "^4.17.21",
"moment": "^2.29.4"
}
}