forked from ca0v/enterprise-wc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
109 lines (109 loc) · 5.26 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
{
"name": "ids-enterprise-wc",
"version": "1.0.0-beta.12",
"description": "The Web Component version of the IDS Enterprise component library",
"author": "Infor Design",
"license": "Apache-2.0",
"homepage": "https://design.infor.com",
"directories": {
"lib": "src",
"test": "test",
"doc": "doc",
"example": "demos"
},
"repository": {
"type": "git",
"url": "git+https://github.com/infor-design/enterprise-wc.git"
},
"bugs": {
"url": "https://github.com/infor-design/enterprise-wc/issues"
},
"scripts": {
"build:dist": "npx rimraf build/dist/development && npx tsc && node scripts/esbuild-prod.mjs",
"build:dist:prod": "npx rimraf build/dist/production && npx tsc && node scripts/esbuild-prod.mjs --mode production",
"build": "npx rimraf build/dist/development && node --max-old-space-size=8192 node_modules/webpack/bin/webpack --config ./webpack.config.dev.js",
"build:coverage": "npx rimraf build/dist/development && node --max-old-space-size=8192 node_modules/webpack/bin/webpack --config ./webpack.config.dev.js --env coverage",
"build:demos:prod": "webpack --config ./webpack.config.dev.js --mode production",
"build:demos:verbose": "npx webpack --config ./webpack.config.dev.js --progress profile",
"build:stats": "npx rimraf build/dist/production && npx webpack --config ./webpack.config.dist.js --mode production",
"copy-static:dev": "cp -f package-dist.json build/dist/development/package.json && cp -f README.md build/dist/development && cp -f LICENSE build/dist/development",
"copy-static:prod": "cp -f package-dist.json build/dist/production/package.json && cp -f README.md build/dist/production && cp -f LICENSE build/dist/production",
"start": "npx rimraf build/development && node --max-old-space-size=8192 node_modules/webpack/bin/webpack serve --live-reload --open --config ./webpack.config.dev.js",
"start:filter:example": "npm --components=data-grid run start",
"lint": "npx eslint src test && npx stylelint src/**/**/*.scss --config .stylelintrc.json && npm run mdlint && npx htmlhint 'src/**/*.html' && npx tsc",
"mdlint": "npx remark . -q -f",
"publish:dry-run": "npm run build:dist:prod && npm run copy-static:prod && npm publish --dry-run",
"publish:npm": "npm run build:dist:prod && npm run copy-static:prod && cd build/dist/production && npm publish",
"publish:debug": "npm run build:dist && npm run copy-static:dev && cd build/dist/development && npm publish",
"publish:link": "npm run build:dist && npm run copy-static:dev && cd build/dist/development && npm link",
"test": "PERCY_LOGLEVEL=silent npx jest --coverage --runInBand --detectOpenHandles --forceExit",
"test:watch": "PERCY_LOGLEVEL=silent npx jest --watchAll --coverage --detectOpenHandles --forceExit -- func",
"test:coverage": "PERCY_LOGLEVEL=silent npx jest --coverage",
"test:ui": "npx jest --coverage --runInBand --detectOpenHandles --logHeapUsage --forceExit -- func -- e2e",
"test:ci": "npm run test:ui && npm run test:percy",
"test:percy": "npx jest --verbose --runInBand --detectOpenHandles --logHeapUsage --forceExit -- percy",
"test:percy:local": "npx percy exec -- npm run test:percy",
"test:debug": "PERCY_LOGLEVEL=silent node --inspect-brk node_modules/.bin/jest --runInBand --detectOpenHandles --forceExit",
"test:vulnerabilities": "snyk test",
"test:circular": "npx madge --circular --extensions ts ./",
"ncu": "npx ncu"
},
"devDependencies": {
"@axe-core/puppeteer": "^4.7.1",
"@babel/eslint-parser": "^7.21.8",
"@babel/preset-env": "^7.21.5",
"@percy/cli": "1.18.0",
"@percy/puppeteer": "2.0.2",
"@types/jest": "29.5.1",
"@types/jest-axe": "3.5.5",
"@types/node": "^20.2.3",
"@types/puppeteer": "^5.4.7",
"@typescript-eslint/eslint-plugin": "^5.59.7",
"@typescript-eslint/parser": "^5.59.7",
"copy-webpack-plugin": "^11.0.0",
"css-loader": "^6.7.4",
"esbuild": "^0.17.19",
"esbuild-loader": "^3.0.1",
"esbuild-sass-plugin": "^2.9.0",
"eslint": "^8.41.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jsdoc": "^44.2.5",
"eslint-plugin-wc": "^1.5.0",
"express": "^4.18.2",
"express-fileupload": "^1.4.0",
"file-loader": "^6.2.0",
"html-loader": "^4.2.0",
"html-webpack-plugin": "^5.5.1",
"htmlhint": "^1.1.4",
"ids-identity": "4.14.8",
"jest": "29.5.0",
"jest-environment-jsdom": "29.5.0",
"jest-puppeteer": "9.0.0",
"loglevel": "^1.8.1",
"mini-css-extract-plugin": "^2.7.6",
"mutationobserver-shim": "^0.3.7",
"puppeteer": "^20.4.0",
"remark-cli": "^11.0.0",
"remark-preset-lint-markdown-style-guide": "^5.1.3",
"rimraf": "^5.0.1",
"sass": "1.62.1",
"sass-loader": "13.3.0",
"sass-to-string": "^1.6.3",
"style-loader": "^3.3.3",
"stylelint": "^15.6.2",
"stylelint-config-standard": "^33.0.0",
"stylelint-config-standard-scss": "^9.0.0",
"stylelint-scss": "^5.0.0",
"terser-webpack-plugin": "^5.3.9",
"ts-jest": "29.1.0",
"ts-loader": "^9.4.3",
"ts-node": "^10.9.1",
"typescript": "^5.0.4",
"webpack": "5.84.0",
"webpack-cli": "^5.1.1",
"webpack-dev-server": "^4.15.0",
"yaml-loader": "^0.8.0"
}
}