-
Notifications
You must be signed in to change notification settings - Fork 43
/
package.json
76 lines (76 loc) · 2.07 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
{
"name": "svelma",
"svelte": "src/index.js",
"description": "Bulma components for Svelte",
"version": "0.4.5",
"author": "Abby Chau, Brian Hann",
"license": "MIT",
"keywords": [
"svelte",
"svelte.js",
"sveltejs",
"bulma",
"component",
"components"
],
"repository": {
"type": "git",
"url": "git+https://github.com/c0bra/svelma.git"
},
"bugs": {
"url": "https://github.com/c0bra/svelma/issues"
},
"module": "dist/module.js",
"main": "dist/index.js",
"files": [
"dist",
"src"
],
"peerDependencies": {
"bulma": "^0.9.3"
},
"devDependencies": {
"@rollup/plugin-alias": "3.1.9",
"@rollup/plugin-commonjs": "21.0.1",
"@rollup/plugin-node-resolve": "13.1.3",
"autoprefixer": "^10.4.1",
"bulma": "^0.9.3",
"conventional-changelog-cli": "^2.2.2",
"get-port-cli": "^3.0.0",
"node-sass": "^7.0.1",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.5",
"prettier": "^2.5.1",
"prettier-plugin-svelte": "^2.5.1",
"rollup": "^2.63.0",
"rollup-plugin-bundle-size": "^1.0.3",
"rollup-plugin-copy": "^3.4.0",
"rollup-plugin-css-only": "^3.1.0",
"rollup-plugin-livereload": "^2.0.5",
"rollup-plugin-scss": "^3.0.0",
"rollup-plugin-svelte": "^7.1.0",
"rollup-plugin-terser": "^7.0.2",
"semantic-release": "^19.0.3",
"sirv-cli": "^2.0.1",
"standard-version": "^9.3.2",
"svelte": "^3.44.3",
"svelte-preprocess": "^4.10.1",
"wait-for-localhost-cli": "^3.0.0"
},
"scripts": {
"build": "rollup -c",
"autobuild": "rollup -c -w",
"dev": "run-p autobuild autodocs",
"docs": "(cd docs; npm i -f; npx sapper export --basepath svelma)",
"autodocs": "(cd docs; npx sapper dev --basepath svelma)",
"jsdocs": "(cd docs; npx jsdoc -c jsdoc/conf.js)",
"prepublishOnly": "npm run build",
"changelog": "conventional-changelog -i CHANGELOG.md -p angular",
"semantic-release": "semantic-release"
},
"browserslist": "last 2 versions",
"homepage": "https://github.com/c0bra/svelma#readme",
"directories": {
"doc": "docs"
}
}