-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·91 lines (91 loc) · 3.23 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
{
"name": "@siposdani87/sui-js",
"version": "1.0.0",
"description": "This is a lightweight FE framework. It is written in the TypeScript language. The codebase was documented with JSDoc and compiled with ESbuild advanced settings.",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"scripts": {
"prebuild": "npm run clean && npm run lint && npm run format && npm run test && npm run coverage",
"build": "npm run sass && npm run tsc && npm run esbuild",
"clean": "rm -rf dist",
"tsc": "npx -p typescript tsc",
"tsc-test": "npm run tsc -- --noEmit",
"sass": "npx sass styles/sui.scss dist/sui.min.css --style compressed",
"esbuild": "npx esbuild src/index.ts --bundle --minify --sourcemap --format=iife --global-name=SUI --outfile=dist/sui.min.js",
"lint": "npm run tsc-test && npm run stylelint && npm run eslint",
"eslint": "npx eslint . --ext .ts,.tsx",
"stylelint": "npx stylelint 'styles/**/*.{css,scss,sass}'",
"eslint:coverage": "npm run eslint -- --format json --output-file coverage/eslint.json",
"stylelint:coverage": "npm run stylelint -- --formatter json --output-file coverage/stylelint.json",
"coverage": "npm run eslint:coverage && npm run stylelint:coverage",
"format:css": "npx prettier --write 'styles/**/*.*css'",
"format:ts": "npx prettier --write 'src/**/*.ts*'",
"format": "npm run format:css && npm run format:ts",
"watch": "npm run esbuild -- --watch & npm run sass -- --watch",
"test": "npx jest"
},
"license": "ISC",
"private": false,
"keywords": [
"sui-js"
],
"author": "Dániel Sipos <[email protected]> (https://siposdani87.com)",
"homepage": "https://github.com/siposdani87/sui-js",
"bugs": {
"url": "https://github.com/siposdani87/sui-js/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/siposdani87/sui-js.git"
},
"publishConfig": {
"access": "public"
},
"files": [
"dist/*",
"src/*",
"styles/*"
],
"dependencies": {
"crypto-js": "4.2.0",
"date-fns": "3.6.0",
"material-design-lite": "1.3.0",
"normalize.css": "8.0.1"
},
"devDependencies": {
"@googlemaps/jest-mocks": "2.21.4",
"@types/crypto-js": "4.2.2",
"@types/dom-view-transitions": "1.0.4",
"@types/google.maps": "3.55.7",
"@types/jest": "29.5.12",
"@types/material-design-lite": "1.1.22",
"@typescript-eslint/eslint-plugin": "7.7.0",
"@typescript-eslint/parser": "7.7.0",
"browser-sync": "2.29.3",
"connect-modrewrite": "0.10.2",
"esbuild": "0.20.2",
"eslint": "8.57.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-import": "2.29.1",
"eslint-plugin-prettier": "5.1.3",
"eslint-plugin-tsdoc": "0.2.17",
"google-closure-compiler": "20240317.0.0",
"google-closure-library": "20230802.0.0",
"gulp": "4.0.2",
"gulp-cli": "2.3.0",
"gulp-sass": "5.1.0",
"gulp-sourcemaps": "3.0.0",
"jest": "29.7.0",
"jest-environment-jsdom": "29.7.0",
"jest-sonar": "0.2.16",
"postcss-scss": "4.0.9",
"prettier": "3.2.5",
"readdirsync2": "1.0.2",
"sass": "1.75.0",
"stylelint": "16.3.1",
"stylelint-config-standard": "36.0.0",
"stylelint-scss": "6.2.1",
"ts-jest": "29.1.2",
"typescript": "5.4.5"
}
}