-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
46 lines (46 loc) · 1.1 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
{
"name": "trestle",
"license": "MIT",
"private": false,
"author": "Brendan Doms <[email protected]> (https://www.bdoms.com)",
"repository": {
"type": "git",
"url": "https://github.com/bdoms/trestle.git"
},
"bugs": {
"url": "https://github.com/bdoms/trestle/issues"
},
"homepage": "https://github.com/bdoms/trestle",
"scripts": {
"start": "parcel svelte/app.js",
"build": "parcel build --no-source-maps --log-level 1 --out-dir static/j --out-file svelte.js svelte/app.js",
"test": "ava --verbose"
},
"comment": "for browserslist see https://github.com/DeMoorJasper/parcel-plugin-svelte/issues/44",
"browserslist": [
"last 1 chrome versions"
],
"engines": {
"node": "^14.0.0",
"yarn": "^1.0.0"
},
"dependencies": {},
"devDependencies": {
"ava": "3.13.0",
"browser-env": "3.3.0",
"esm": "3.2.25",
"page": "1.11.6",
"parcel-bundler": "1.12.4",
"parcel-plugin-svelte": "4.0.6",
"svelte": "3.29.0"
},
"ava": {
"files": [
"svelte/tests/**"
],
"require": [
"./svelte/tests/_browser_env.js",
"esm"
]
}
}