-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
53 lines (53 loc) · 1.67 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
{
"name": "tiny-ui-toggle",
"homepage": "https://nigelotoole.github.io/tiny-ui-toggle/",
"author": "Nigel O Toole <[email protected]> (http://www.purestructure.com)",
"description": "Toggle the state of a UI element to easily create components e.g. collapse, accordion, tabs, dropdown, dialog / modal.",
"keywords": [
"toggle",
"collapse",
"accordion",
"tabs",
"dropdown",
"menu",
"dialog",
"modal",
"javascript"
],
"main": "src/scripts/tiny-ui-toggle.js",
"version": "2.0.0",
"license": "MIT",
"engines": {
"node": ">=14"
},
"repository": {
"type": "git",
"url": "git+https://github.com/NigelOToole/tiny-ui-toggle.git"
},
"bugs": {
"url": "https://github.com/NigelOToole/tiny-ui-toggle/issues"
},
"browserslist": [
"defaults"
],
"devDependencies": {
"@11ty/eleventy-dev-server": "^1.0.4",
"concurrently": "^8.2.1",
"cross-env": "^7.0.3",
"postcss": "^8.4.31",
"postcss-cli": "^10.1.0",
"postcss-custom-media": "^10.0.2",
"postcss-import": "^15.1.0",
"postcss-preset-env": "^9.1.4",
"rimraf": "^5.0.5"
},
"scripts": {
"clean": "rimraf src/**/*.map",
"dev": "cross-env NODE_ENV=development && concurrently \"npm:dev:*\"",
"dev:server": "npx @11ty/eleventy-dev-server --dir=src",
"dev:styles": "postcss src/styles/site/main.css src/styles/tiny-ui-toggle/tiny-ui-toggle.css --dir src/styles --watch",
"build": "npm run clean && cross-env NODE_ENV=production concurrently \"npm:build:*\"",
"build:styles": "postcss src/styles/site/main.css src/styles/tiny-ui-toggle/tiny-ui-toggle.css --dir src/styles",
"publish": "npm run build && npm publish"
}
}