-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
55 lines (55 loc) · 1.63 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
{
"name": "svelte-progress-bar",
"version": "3.0.2",
"description": "A tiny progress bar, inspired by YouTube's loader!",
"main": "dist/ProgressBar.cjs.js",
"module": "dist/ProgressBar.es.js",
"svelte": "src/ProgressBar.svelte",
"umd": "dist/ProgressBar.umd.js",
"files": [
"src",
"dist"
],
"scripts": {
"prepublishOnly": "npm run build",
"test": "node src/ProgressBar.test.js",
"prebuild": "rm -rf dist && mkdir -p dist && rm -f docs/build.js",
"build": "rollup -c",
"postbuild": "./node_modules/.bin/babel dist/ProgressBar.umd.js --presets=@babel/env --out-dir dist --module-id ProgressBar --minified --no-comments",
"dev": "rollup -c -w",
"start": "sirv docs --dev"
},
"repository": {
"type": "git",
"url": "git+https://github.com/saibotsivad/svelte-progress-bar.git"
},
"keywords": [
"svelte",
"progress",
"load"
],
"author": {
"name": "Tobias Davis",
"email": "[email protected]",
"url": "https://davistobias.com"
},
"license": "SEE LICENSE IN LICENSE.md",
"bugs": {
"url": "https://github.com/saibotsivad/svelte-progress-bar/issues"
},
"homepage": "https://github.com/saibotsivad/svelte-progress-bar#readme",
"devDependencies": {
"@babel/cli": "^7.16.0",
"@babel/plugin-transform-modules-umd": "^7.16.5",
"@babel/preset-env": "^7.16.5",
"@rollup/plugin-node-resolve": "^13.1.1",
"jsdom": "^19.0.0",
"register-svelte-require": "0.0.1",
"rollup": "^2.61.1",
"rollup-plugin-npm-run": "^1.0.2",
"rollup-plugin-svelte": "^7.1.0",
"sirv-cli": "^1.0.14",
"svelte": "^3.44.3",
"uvu": "^0.5.2"
}
}