forked from formio/core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
125 lines (125 loc) · 3.86 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
{
"name": "@formio/core",
"version": "2.1.0-dev.tt.13",
"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",
"./error": "./lib/error/index.js"
},
"scripts": {
"test": "TEST=1 nyc --reporter=lcov --reporter=text --reporter=text-summary mocha -r ts-node/register -r tsconfig-paths/register -r mock-local-storage -r jsdom-global/register -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": "npx webpack --config config/webpack.config.js",
"build:prod": "npx 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",
"show-coverage": "open coverage/lcov-report/index.html"
},
"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",
"experimental.js",
"experimental.d.ts"
],
"homepage": "https://github.com/formio/core#readme",
"devDependencies": {
"@types/chai": "^4.3.16",
"@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.17.4",
"@types/lodash.template": "^4.5.3",
"@types/mocha": "^10.0.4",
"@types/power-assert": "^1.5.11",
"@types/sinon": "^17.0.3",
"@types/uuid": "^9.0.8",
"chai": "4.4.1",
"chance": "^1.1.8",
"fetch-mock": "^9.11.0",
"gulp": "^5.0.0",
"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.4.0",
"mocha-jsdom": "^2.0.0",
"mock-local-storage": "^1.1.20",
"nyc": "^15.1.0",
"power-assert": "^1.6.1",
"sinon": "^17.0.2",
"ts-loader": "^9.5.0",
"ts-node": "^10.5.0",
"tsc-alias": "^1.8.10",
"tsconfig-paths": "^4.1.2",
"tsconfig-paths-webpack-plugin": "^4.1.0",
"typedoc": "^0.25.13",
"typescript": "^5.4.5",
"webpack": "^5.91.0",
"webpack-cli": "^5.1.4",
"written-number": "^0.11.1"
},
"dependencies": {
"@types/json-logic-js": "^2.0.7",
"browser-cookies": "^1.2.0",
"core-js": "^3.37.1",
"dayjs": "^1.11.11",
"dompurify": "^3.1.4",
"eventemitter3": "^5.0.0",
"fast-json-patch": "^3.1.1",
"fetch-ponyfill": "^7.1.0",
"inputmask": "5.0.8",
"json-logic-js": "^2.0.2",
"lodash": "^4.17.21",
"moment": "^2.29.4"
},
"nyc": {
"check-coverage": true,
"statements": 64,
"branches": 55,
"functions": 60,
"lines": 63,
"include": [
"src/**/*.ts",
"src/**/*.js"
],
"exclude": [
"src/**/*.test.ts",
"src/**/__tests__/",
"src/experimental/**/*.ts",
"src/types/**/*.ts"
],
"all": true
}
}