-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
executable file
·103 lines (103 loc) · 3.6 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
{
"name": "kompletr",
"version": "2.0.21",
"description": "Vanilla autocomplete module",
"main": "src/js/index.js",
"type": "module",
"author": {
"name": "Steve Lebleu",
"email": "[email protected]",
"url": "https://www.konfer.be"
},
"homepage": "https://github.com/steve-lebleu/kompletr",
"repository": {
"type": "git",
"url": "https://github.com/steve-lebleu/kompletr.git"
},
"bugs": {
"url": "https://github.com/steve-lebleu/kompletr/issues",
"email": "[email protected]"
},
"demo": "",
"download": "",
"directories": {
"src": "src",
"dist": "dist",
"docs": "docs"
},
"files": [
"dist",
"src"
],
"browser": "dist/js/kompletr.min.js",
"unpkg": "dist/js/kompletr.min.js",
"module": "dist/js/kompletr.min.js",
"keywords": [
"html",
"html5",
"css",
"css3",
"vanilla",
"javascript",
"plugin",
"auto-complete",
"auto-completion",
"autocomplete",
"autocompletion"
],
"license": "ISC",
"scripts": {
"build": "mkdir -p build && cp src/index.html build/ & cp test/fixtures/data.json build/ & npm run build:css & npm run build:css-demo && npm run build:js",
"build:css": "node-sass ./src/sass/kompletr.scss ./build/css/kompletr.min.css --output-style compressed",
"build:css-demo": "node-sass ./src/sass/kompletr.demo.scss ./build/css/kompletr.demo.min.css --output-style compressed",
"build:js": "webpack",
"ci:dev": "webpack serve",
"ci:e2e": "cypress run --browser chrome ./cypress",
"ci:cy": "cypress open",
"ci:test": "node --experimental-vm-modules node_modules/jest/bin/jest.js ./test/**.spec.js -- --coverage",
"demo": "npm run demo:css && npm run demo:css-demo && npm run demo:js",
"demo:css": "node-sass ./src/sass/kompletr.scss ./demo/css/kompletr.min.css --output-style compressed",
"demo:css-demo": "node-sass ./src/sass/kompletr.demo.scss ./demo/css/kompletr.demo.min.css --output-style compressed",
"demo:js": "webpack --mode production --config ./webpack.config.prod.js",
"dev": "webpack-dashboard -- webpack serve --hot --mode development --config ./webpack.config.js",
"dist": "mkdir -p dist & npm run dist:css && npm run dist:js",
"dist:css": "node-sass ./src/sass/kompletr.scss ./dist/css/kompletr.min.css --output-style compressed",
"dist:js": "webpack --mode production --config ./webpack.config.prod.js",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:preview": "vitepress preview docs",
"lint": "npm run lint:js && npm run lint:css",
"lint:js": "eslint ./src/js/",
"lint:css": "stylelint ./src/sass/",
"prod": "webpack --mode production --config ./webpack.config.prod.js"
},
"devDependencies": {
"@babel/runtime": "^7.23.6",
"@jest/globals": "^29.7.0",
"cypress": "^13.6.3",
"esbuild-loader": "^4.1.0",
"eslint": "^8.57.0",
"eslint-plugin-compat": "^4.2.0",
"html-loader": "^5.0.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jest-junit": "^16.0.0",
"jsdom": "^24.0.0",
"node-sass": "^9.0.0",
"nodemon": "^3.1.0",
"prettier": "^3.2.5",
"stylelint": "^16.2.1",
"stylelint-config-sass-guidelines": "^11.1.0",
"stylelint-config-standard": "^36.0.0",
"stylelint-no-unsupported-browser-features": "^8.0.1",
"stylelint-order": "^6.0.4",
"stylelint-prettier": "^5.0.0",
"stylelint-selector-bem-pattern": "^4.0.0",
"vitepress": "^1.0.0-rc.45",
"vitepress-plugin-tabs": "^0.5.0",
"webpack": "^5.89.0",
"webpack-cli": "^5.1.4",
"webpack-dashboard": "^3.3.8",
"webpack-dev-server": "^4.15.1"
}
}