forked from bulib/bulib-wc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
77 lines (77 loc) · 2.53 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
{
"name": "@bostonuniversity/bulib-wc",
"version": "0.1.74",
"description": "collection of web components and styles used at Boston University Libraries",
"type": "module",
"main": "src/index.js",
"module": "src/index.js",
"files": [
"dist/",
"src/"
],
"scripts": {
"analyze": "wca analyze './src/*/*-*.js' --outFile ./custom-elements.json",
"clean": "./scripts/clean.sh",
"reinstall": "npm run clean && npm install",
"cy:verify": "cypress verify",
"css": "./scripts/bundle_css.sh",
"prestart": "npm run css",
"start": "npm run analyze && start-storybook --node-resolve --watch --open --stories '**/*.stories.mdx'",
"build": "npm run build:rollup",
"build:all": "./scripts/rebuild.sh",
"build:css": "npm run css",
"build:helpers": "./scripts/bundle_helpers.sh",
"build:rollup": "rollup -c rollup.config.js",
"build:owc": "rollup -c rollup.config.owc.js",
"prebuild:storybook": "npm run css",
"build:storybook": "build-storybook --stories '**/*.stories.mdx' -o _site && cp dist/bundle.css _site/bundle.css",
"deploy": "./scripts/deploy.sh",
"deploy:storybook": "npm run build:storybook && storybook-to-ghpages -e _site -o _site",
"pretest": "npm run build:css",
"test": "karma start",
"test:update-snapshots": "karma start --update-snapshots",
"test:prune-snapshots": "karma start --prune-snapshots"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bu-ist/bulib-wc.git"
},
"keywords": [
"web-components",
"code4lib",
"lit-element",
"lit-html"
],
"author": "bulib",
"license": "MIT",
"bugs": {
"url": "https://github.com/bulib/bulib-wc/issues"
},
"homepage": "https://github.com/bulib/bulib-wc#readme",
"dependencies": {
"@webcomponents/webcomponentsjs": "^2.2.10",
"lit-element": "^2.2.1",
"lit-html": "^1.1.2"
},
"devDependencies": {
"@open-wc/building-rollup": "^0.16.0",
"@open-wc/demoing-storybook": "^1.0.1",
"@open-wc/semantic-dom-diff": "^0.17.6",
"@open-wc/testing": "^2.0.0",
"@open-wc/testing-karma": "^3.0.0",
"@storybook/cli": "^5.2.3",
"@storybook/storybook-deployer": "^2.8.6",
"cypress": "^3.4.1",
"deepmerge": "^3.2.0",
"es-dev-server": "^1.23.0",
"material-icons": "^0.3.1",
"mocha": "^7.1.1",
"sass": "^1.77.8",
"npm-run-all": "^4.1.5",
"rollup": "^1.19.4",
"rollup-plugin-babel-minify": "^9.0.0",
"rollup-plugin-node-resolve": "^5.2.0",
"web-component-analyzer": "^1.0.0",
"webpack-merge": "^4.1.5"
}
}