forked from bestguy/sveltestrap
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 858 Bytes
/
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
{
"name": "sveltestrap",
"version": "1.0.0",
"main": "dist/sveltestrap.js",
"keywords": [
"svelte"
],
"repository": {
"type": "git",
"url": "[email protected]:bestguy/sveltestrap.git"
},
"files": [
"dist"
],
"scripts": {
"dist": "rollup -c",
"docs": "rollup -c -i src/Docs.html -o docs/index.js -f iife -n Docs",
"prepublish": "npm run dist",
"postpublish": "git push && git push --tags",
"version": "npm run docs && git add -A docs",
"watch": "rollup -c -w -i src/Docs.html -o docs/index.js -f iife -n Docs"
},
"dependencies": {
"svelte": "^1.60.3"
},
"devDependencies": {
"lodash.tonumber": "^4.0.3",
"rollup": "^0.45.2",
"rollup-plugin-commonjs": "^8.0.2",
"rollup-plugin-node-resolve": "^3.0.0",
"rollup-plugin-svelte": "^4.1.0",
"rollup-watch": "^4.3.1"
}
}