-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathpackage.json
More file actions
111 lines (111 loc) · 2.87 KB
/
package.json
File metadata and controls
111 lines (111 loc) · 2.87 KB
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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
{
"name": "benchmarking",
"version": "0.0.1",
"description": "Wrappers to benchmark LumoSQL",
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/maxwell-k/benchmarking.git"
},
"keywords": [
"LumoSQL",
"benchmarking",
"SQLite",
"SQLightning"
],
"author": "Keith Maxwell",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/maxwell-k/benchmarking/issues"
},
"homepage": "https://github.com/maxwell-k/benchmarking#readme",
"eslintConfig": {
"env": {
"es6": true
},
"extends": [
"eslint:recommended",
"plugin:import/errors",
"plugin:import/warnings",
"prettier"
],
"rules": {
"sort-imports": [
"error",
{
"ignoreDeclarationSort": true
}
],
"import/order": "error"
},
"parserOptions": {
"ecmaVersion": 2020,
"sourceType": "module"
},
"plugins": [
"svelte3"
],
"overrides": [
{
"files": [
"**/*.svelte"
],
"processor": "svelte3/svelte3"
}
]
},
"eslintIgnore": [
"*.html",
"*.json",
"/out/",
"/src/node_modules/"
],
"dependencies": {
"compression": "^1.7.1",
"cheerio": "^1.0.0-rc.3",
"polka": "^0.5.2",
"sirv": "^0.4.0"
},
"devDependencies": {
"@babel/core": "^7.0.0",
"@babel/plugin-syntax-dynamic-import": "^7.0.0",
"@babel/plugin-transform-runtime": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"@babel/runtime": "^7.0.0",
"@rollup/plugin-commonjs": "^11.0.0",
"@rollup/plugin-node-resolve": "^6.0.0",
"@rollup/plugin-replace": "^2.2.0",
"c8": "^7.3.0",
"cypress": "^4.12.1",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.9.0",
"eslint-plugin-import": "^2.20.0",
"eslint-plugin-svelte3": "^2.7.3",
"jsdoc": "^3.6.3",
"mocha": "^8.1.1",
"npm-run-all": "^4.1.5",
"prettier": "^1.19.1",
"prettier-plugin-svelte": "^0.7.0",
"rollup": "^1.20.0",
"rollup-plugin-babel": "^4.0.2",
"rollup-plugin-svelte": "^5.0.1",
"rollup-plugin-terser": "^7.0.0",
"sapper": "^0.27.16",
"svelte": "^3.49.0"
},
"scripts": {
"apidocs": "jsdoc -c .jsdoc.conf.json",
"build": "sapper build",
"coverage": "c8 npm run unit",
"cypress": "cypress run",
"dev": "sapper dev",
"export": "sapper export",
"format": "prettier --write '*.{js,json}' '**/*.{js,json,mjs,svelte}'",
"gh-pages": "npm run build && npm run export && rm -rf gh-pages/* && cp -r __sapper__/export/* gh-pages/ && git -C gh-pages add .",
"integration": "run-p --race dev cypress",
"lint": "eslint 'src/**' 'cypress/**' 'test/**'",
"start": "node __sapper__/build",
"test": "run-s unit cypress",
"unit": "node --experimental-modules $(npm bin)/mocha",
"unit:debug": "node inspect --experimental-modules $(npm bin)/mocha"
}
}