-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 898 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 898 Bytes
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
{
"name": "@stormid/toggle",
"version": "1.0.0",
"description": "Accessible DOM state toggling",
"author": "stormid",
"license": "MIT",
"publishConfig": {
"access": "public"
},
"repository": "https://github.com/stormid/components/tree/master/packages/toggle",
"private": false,
"main": "dist/index.js",
"source": "src/index.js",
"module": "dist/index.modern.js",
"unpkg": "dist/index.umd.js",
"browser": "dist/index.umd.js",
"keywords": [
"stormid",
"component",
"ui",
"toggle",
"toggler"
],
"scripts": {
"build": "microbundle --name Toggle",
"test": "jest --coverage & npx playwright test",
"dev": "webpack-dev-server --config tools/webpack.config.js",
"prod": "webpack --config tools/webpack.config.js --mode production",
"prepublish": "npm run -s build"
},
"gitHead": "9042db4005411c4360ba3e8188e03333c10098f2"
}