-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1015 Bytes
/
package.json
File metadata and controls
41 lines (41 loc) · 1015 Bytes
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
{
"name": "sveltejs-brunch",
"version": "1.0.1",
"description": "Compile Svelte components inside Brunch projects",
"main": "index.js",
"scripts": {
"format": "prettier ./*.js --write",
"patch": "np patch --yolo --no-yarn",
"minor": "np minor --yolo --no-yarn",
"major": "np major --yolo --no-yarn",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/StarpTech/sveltejs-brunch.git"
},
"keywords": [
"svelte",
"brunch",
"compiler"
],
"author": "Dustin Deus <deusdustin@gmail.com> (http://www.starptech.de)",
"license": "ISC",
"bugs": {
"url": "https://github.com/StarpTech/sveltejs-brunch/issues"
},
"prettier": {
"semi": false,
"singleQuote": true
},
"homepage": "https://github.com/StarpTech/sveltejs-brunch#readme",
"dependencies": {
"combine-source-map": "^0.8.0",
"svelte": "^3.41.0"
},
"devDependencies": {
"jest": "^27.0.6",
"np": "^7.5.0",
"prettier": "^2.3.2"
}
}