-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
125 lines (125 loc) · 3.48 KB
/
package.json
File metadata and controls
125 lines (125 loc) · 3.48 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
113
114
115
116
117
118
119
120
121
122
123
124
125
{
"name": "@3squared/forge-ui",
"repository": "https://github.com/3Squared/ForgeUI",
"version": "1.12.1",
"description": "ForgeUI is designed to be a wrapper around different libraries that provide a consistent UI style. It is comprised of many different packages that have been combined to create a one stop shop for UI.",
"license": "MIT",
"main": "./dist/esm/forge-ui.mjs",
"module": "./dist/esm/forge-ui.mjs",
"types": "./dist/types/index.d.ts",
"files": [
"dist/*",
"src/styles/*",
"utilities/index.js"
],
"sideEffects": false,
"scripts": {
"dev": "vite build --watch",
"build": "node scripts/build.js",
"lint": "eslint . --ext .ts,.vue --resolve-plugins-relative-to ./../../packages/eslint-config-custom/node_modules",
"lint:fix": "eslint . --ext .ts,.vue --fix --resolve-plugins-relative-to ./../../packages/eslint-config-custom/node_modules",
"cy": "cypress open --component --browser chrome",
"test": "cypress run --component && npm run coverage && node ./scripts/merge.js",
"test-unit": "vitest --ui --coverage",
"coverage": "vitest run --coverage -- --coverage.provider c8",
"is-tree-shakeable": "agadoo dist/esm/forge-ui.mjs",
"make-icons": "node scripts/create-icons.js",
"create-css": "vite build --config vite.config.styles.ts"
},
"dependencies": {
"@azure/abort-controller": "^1.0.0",
"@azure/storage-blob": "^12.23.0",
"bootstrap": "4.6.2",
"bootstrap-vue": "~2.23.0",
"chart.js": "^4.0.0",
"dayjs": "^1.0.0",
"flatpickr": "^4.0.0",
"lodash": "4.17.21",
"mime": "^4.0.4",
"ts-simple-nameof": "^1.0.0",
"vee-validate": "3.4.15",
"vue": "~2.7.0",
"vue-multiselect": "^2.0.0",
"vuedraggable": "2.24.3"
},
"devDependencies": {
"@cypress/code-coverage": "3.14.7",
"@types/lodash": "4.17.20",
"@vitejs/plugin-vue2": "2.3.4",
"@vitest/coverage-v8": "0.34.6",
"@vitest/ui": "0.34.7",
"@vue/babel-preset-jsx": "1.4.0",
"@vue/test-utils": "1.3.6",
"@zerollup/ts-transform-paths": "1.7.18",
"agadoo": "3.0.0",
"c8": "9.1.0",
"cypress": "13.17.0",
"eslint-config-custom": "*",
"fs-extra": "11.3.2",
"sass": "1.94.2",
"shelljs": "0.10.0",
"typescript": "4.9.5",
"vite": "4.5.14",
"vite-plugin-checker": "0.11.0",
"vite-plugin-dts": "3.9.1",
"vite-plugin-istanbul": "5.0.0",
"vitest": "0.34.6",
"vue-docgen-api": "4.79.2",
"vue-docgen-cli": "4.79.0",
"vue-docgen-web-types": "0.1.8",
"vue-template-compiler": "2.7.16",
"vue-tsc": "1.8.27"
},
"engines": {
"node": ">=14"
},
"web-types": "dist/web-types.json",
"vetur": {
"tags": "dist/vetur-tags.json",
"attributes": "dist/vetur-attributes.json"
},
"contributors": [
{
"name": "Jacob Minor",
"email": "jacob.minor@3squared.com"
},
{
"name": "Tom Smith",
"email": "tom.smith@3quared.com"
},
{
"name": "Lucas Maybury",
"email": "lucas.maybury@3quared.com"
},
{
"name": "Richard Wilson",
"email": "richard.wilson@3quared.com"
},
{
"name": "Alex Ashley",
"email": "alex.ashley@3squared.com"
}
],
"nyc": {
"all": true,
"report-dir": "coverage/cypress",
"include": "*",
"exclude": "**/*.cy.ts",
"extension": [
".js",
".cjs",
".mjs",
".ts",
".tsx",
".jsx",
".vue"
],
"reporter": [
"json",
"cobertura"
]
},
"publishConfig": {
"access": "public"
}
}