-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
48 lines (48 loc) · 1.24 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
{
"name": "@morbidick/bootstrap",
"version": "0.4.2",
"description": "Rewrite of bootstrap components as web components",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/morbidick/bootstrap-webcomponents"
},
"main": "dist/elements.bundled.js",
"module": "elements.js",
"dependencies": {
"@morbidick/lit-element-notify": "^1.0.0",
"lit-element": "^2.0.1",
"lit-html": "^1.0.0",
"rimraf": "^2.6.3"
},
"devDependencies": {
"@polymer/iron-demo-helpers": "^3.0.2",
"@webcomponents/webcomponentsjs": "^2.2.6",
"chai": "^4.2.0",
"fs-extra": "^7.0.1",
"mocha": "^5.0.0",
"mocha-junit-reporter": "^1.18.0",
"pixelmatch": "^4.0.2",
"pngjs": "^3.3.3",
"polyserve": "^0.27.15",
"puppeteer": "1.6.2",
"rollup": "^0.59.4",
"rollup-plugin-babel-minify": "^5.0.0",
"rollup-plugin-filesize": "^4.0.1",
"rollup-plugin-node-resolve": "^3.4.0"
},
"scripts": {
"start": "npm run serve",
"serve": "polyserve --npm --module-resolution=node",
"test": "mocha tests/visual.js",
"build": "rollup -c",
"prepack": "npm test && npm run build"
},
"files": [
"dist",
"elements",
"elements.js",
"helpers",
"styles"
]
}