-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
43 lines (43 loc) · 1.44 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
{
"name": "sqzbx",
"version": "0.0.6",
"description": "An accessible accordion in <1kb",
"source": "src/index.js",
"main": "dist/sqzbx.js",
"module": "dist/sqzbx.esm.js",
"unpkg": "dist/sqzbx.umd.js",
"exports": {
".": {
"browser": "./dist/sqzbx.modern.js",
"umd": "./dist/sqzbx.umd.js",
"import": "./dist/sqzbx.esm.js",
"require": "./dist/sqzbx.js"
}
},
"scripts": {
"build": "npm-run-all --parallel build:*",
"build:esm": "microbundle -i src/index.js -o dist/sqzbx.esm.js --no-pkg-main -f es --no-sourcemap",
"build:modern": "microbundle -i src/index.js -o dist/sqzbx.modern.js --no-pkg-main -f modern --no-sourcemap",
"build:cjs": "microbundle -i src/index.js -o dist/sqzbx.js --no-pkg-main -f cjs",
"build:umd": "microbundle -i src/index.js -o dist/sqzbx.umd.js --no-pkg-main --external none -f umd --no-sourcemap",
"example": "light-server -s . -p 7000 -w 'index.html' -q",
"watch": "microbundle watch --external none --no-sourcemap",
"test": "jest"
},
"repository": "selfawarestudio/sqzbx",
"keywords": [
"accordion"
],
"homepage": "https://github.com/selfawarestudio/sqzbx#readme",
"author": "Mike Wagz <[email protected]> (https://selfaware.studio)",
"license": "MIT",
"devDependencies": {
"light-server": "^2.9.1",
"microbundle": "^0.13.0",
"npm-run-all": "^4.1.5"
},
"dependencies": {
"martha": "^4.0.4",
"smitter": "^1.0.2"
}
}