-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
76 lines (76 loc) · 2.09 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-pro",
"svelte": "src/index.js",
"description": "Based on svelma project extension and modification",
"version": "2.0.1",
"author": "DLLCN",
"license": "MIT",
"keywords": [
"svelte",
"svelte.js",
"svelma",
"bulma",
"component",
"components"
],
"repository": {
"type": "git",
"url": "https://github.com/KeiferJu/svelma-pro"
},
"bugs": {
"url": "https://github.com/KeiferJu/svelma-pro/issues"
},
"module": "dist/module.js",
"main": "dist/index.js",
"files": [
"dist",
"src"
],
"peerDependencies": {
"bulma": "^0.8.0"
},
"dependencies": {
"tinycolor2": "^1.4.1",
"tippy.js": "^6.2.3"
},
"devDependencies": {
"autoprefixer": "^9.6.0",
"bulma": "^0.8.0",
"conventional-changelog-cli": "^2.0.21",
"get-port-cli": "^2.0.0",
"gh-pages": "^2.2.0",
"node-sass": "^4.12.0",
"npm-run-all": "^4.1.5",
"postcss": "^7.0.17",
"prettier": "^1.17.1",
"prettier-plugin-svelte": "^0.5.1",
"rollup": "^2.3.4",
"rollup-plugin-alias": "^1.5.1",
"rollup-plugin-analyzer": "^3.0.1",
"rollup-plugin-bundle-size": "^1.0.3",
"rollup-plugin-commonjs": "^9.2.0",
"rollup-plugin-copy": "^2.0.1",
"rollup-plugin-livereload": "^1.0.4",
"rollup-plugin-node-resolve": "^4.0.1",
"rollup-plugin-scss": "^1.0.1",
"rollup-plugin-svelte": "^7.0.0",
"rollup-plugin-terser": "^7.0.0",
"sirv-cli": "^0.3.1",
"standard-version": "^6.0.1",
"svelte": "^3.9.2",
"svelte-preprocess": "^2.12.0",
"wait-for-localhost-cli": "^1.1.0"
},
"scripts": {
"scss": "cd src && node-sass svelma-pro.scss svelma-pro.css",
"build": "npm run scss && rollup -c",
"autobuild": "rollup -c -w",
"autodocs": "(cd docs; npx sapper dev --basepath svelma-pro)",
"dev": "run-p autobuild autodocs",
"docs": "(cd docs; npx sapper export --basepath svelma-pro)",
"clean": "rm -rf node_modules/gh-pages/.cache",
"deploy": "npm run clean && npm run docs && node ./deploy.js",
"pkg": "npm run build && npm publish"
},
"browserslist": "last 2 versions"
}