-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.8 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.8 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
{
"name": "@krestui/svelte-context-test",
"license": "MIT",
"repository": "git@github.com:krestui/svelte-context-test.git",
"version": "0.3.1",
"types": "package/index.d.ts",
"author": "KrestUI",
"keywords": [
"svelte",
"svelte-context",
"test",
"jest",
"unit"
],
"scripts": {
"clean": "rimraf package && rimraf node_modules/@krestui",
"build": "svelte-kit package",
"package": "svelte-kit package",
"prepare": "yarn clean && NODE_ENV=production yarn package",
"test": "jest",
"check": "svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-check --tsconfig ./tsconfig.json --watch",
"lint": "prettier --check --plugin-search-dir=. . && eslint .",
"format": "prettier --write --plugin-search-dir=. .",
"test:watch": "npm run test -- --watch",
"next": "yarn version patch --deferred && yarn version apply",
"pub": "yarn check && yarn lint && yarn prepare && cd package && npm publish --tolerate-republish"
},
"devDependencies": {
"@sveltejs/kit": "^1.0.0-next.379",
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/svelte": "3.1.3",
"@types/jest": "^28.1.6",
"@typescript-eslint/eslint-plugin": "^5.30.7",
"@typescript-eslint/parser": "^5.30.7",
"eslint": "^8.20.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-svelte3": "^4.0.0",
"jest": "^28.1.3",
"jest-environment-jsdom": "^28.1.3",
"prettier": "^2.7.1",
"prettier-plugin-svelte": "^2.7.0",
"rimraf": "^3.0.2",
"rollup": "^2.77.0",
"svelte": "^3.49.0",
"svelte-check": "^2.8.0",
"svelte-jester": "^2.3.2",
"svelte-preprocess": "^4.10.7",
"svelte2tsx": "^0.5.11",
"ts-jest": "^28.0.7",
"typescript": "^4.7.4"
},
"type": "module",
"publishConfig": {
"access": "public"
}
}