-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 1.45 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "cube",
"version": "0.1.0",
"description": "A cube",
"author": "Kris Kowal <kris@cixar.com>",
"license": "BSD-3-Clause",
"main": "index.html",
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/borkshop/js.git",
"directory": "cube"
},
"private": true,
"scripts": {
"lint": "tsc",
"test": "ava",
"cover": "c8 -r html ava",
"ci": "npm run lint",
"start": "snowpack dev",
"build": "snowpack build --clean"
},
"devDependencies": {
"@snowpack/plugin-optimize": "^0.2.13",
"@snowpack/plugin-typescript": "^1.2.1",
"@types/snowpack-env": "^2.3.4",
"@types/wicg-native-file-system": "^2020.6.0",
"ava": "^4.2.0",
"c8": "^7.7.3",
"prettier": "^3.0.0",
"snowpack": "^3.8.8",
"typescript": "^4.5.2"
},
"snowpack": {
"workspaceRoot": "../",
"plugins": [
"@snowpack/plugin-typescript"
],
"exclude": [
"**/.git/**/*",
"**/build/**/*",
"**/test/**/*",
"**/scratch/**/*",
"**/scripts/**/*",
"**/node_modules/**/*",
"**/test-*.js",
"**/*.test.js",
"tsconfig.json",
"jsconfig.json",
"package.json",
"snowpack.config.json",
"draw-daia.js"
],
"mount": {
".": "/"
}
},
"ava": {
"files": [
"**/*.test.js"
],
"timeout": "2m"
},
"prettier": {
"arrowParens": "avoid",
"trailingComma": "all",
"singleQuote": true
}
}