-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
35 lines (35 loc) · 924 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
35
{
"name": "sveltify",
"version": "3.0.0",
"description": "Browserify transform for Svelte",
"main": "index.js",
"scripts": {
"test": "rm -f test/build.js && browserify -t [ ./index.js --extensions [.htmlz .svelte .html] --svelte [ --dev=true ] ] -d test/test.js -o test/build.js && opn test/index.html"
},
"repository": {
"type": "git",
"url": "git+https://github.com/TehShrike/sveltify.git"
},
"keywords": [
"svelte",
"browserify",
"transform",
"browserify-transform"
],
"author": "TehShrike",
"license": "WTFPL",
"bugs": {
"url": "https://github.com/TehShrike/sveltify/issues"
},
"homepage": "https://github.com/TehShrike/sveltify#readme",
"devDependencies": {
"browserify": "^16.2.3",
"opn-cli": "^4.1.0"
},
"dependencies": {
"just-pascal-case": "^1.1.0",
"magic-string": "0.25.2",
"svelte": "^3.0.0",
"through2": "^2.0.5"
}
}