This repository has been archived by the owner on Sep 17, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
76 lines (76 loc) · 1.85 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
70
71
72
73
74
75
76
{
"name": "jest-svelte-events",
"version": "1.0.5",
"description": "Custom Jest matchers to test Svelte events",
"main": "dist/index.js",
"license": "MIT",
"author": "Rahim Alwer <[email protected]>",
"engines": {
"node": ">= 8"
},
"homepage": "https://github.com/mihar-22/jest-svelte-events#readme",
"repository": {
"type": "git",
"url": "https://github.com/mihar-22/jest-svelte-events"
},
"bugs": {
"url": "https://github.com/mihar-22/jest-svelte-events/issues"
},
"keywords": [
"jest-svelte-events",
"events",
"jest",
"svelte",
"utilities",
"matchers",
"extend",
"expect",
"testing"
],
"files": [
"dist",
"extend-expect.js",
"extend-expect.d.ts"
],
"scripts": {
"toc": "doctoc README.md",
"lint": "standard --fix --env jest --global listen",
"test": "jest src",
"test:watch": "yarn test --watch",
"test:update": "yarn test --updateSnapshot --coverage",
"clean": "rimraf dist",
"build": "yarn clean && microbundle src/index.js -f cjs",
"setup": "yarn && yarn validate",
"validate": "yarn lint && yarn build && yarn test",
"release": "yarn validate && standard-version"
},
"peerDependencies": {
"svelte": ">= 3"
},
"dependencies": {},
"devDependencies": {
"@babel/core": "^7.7.5",
"@babel/preset-env": "^7.7.6",
"@testing-library/svelte": "^1.11.0",
"@types/jest": "^24.0.18",
"babel-jest": "^24.9.0",
"doctoc": "^1.4.0",
"jest": "^24.9.0",
"microbundle": "^0.12.0-next.6",
"rimraf": "^3.0.0",
"standard": "^14.3.1",
"standard-version": "^8.0.1",
"svelte": "^3.16.0",
"svelte-jester": "^1.0.3"
},
"jest": {
"transform": {
"^.+\\.js$": "babel-jest",
"^.+\\.svelte$": "svelte-jester"
},
"moduleFileExtensions": [
"js",
"svelte"
]
}
}