-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 989 Bytes
/
package.json
File metadata and controls
44 lines (44 loc) · 989 Bytes
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
{
"name": "@ficusjs/testing",
"version": "2.3.0",
"description": "Helper functions for component testing",
"type": "module",
"main": "src/index.mjs",
"module": "src/index.mjs",
"types": "types/index.d.ts",
"sideEffects": false,
"scripts": {
"lint": "standard \"src/**/*.mjs\"",
"test": "ava \"test/**/*.spec.mjs\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/ficusjs/ficusjs-testing.git"
},
"keywords": [
"ficusjs",
"frontend",
"web-components",
"testing"
],
"author": "Matt Levy",
"license": "MIT",
"bugs": {
"url": "https://github.com/ficusjs/ficusjs-testing/issues"
},
"homepage": "https://github.com/ficusjs/ficusjs-testing#readme",
"dependencies": {
"jsdom": "22.1.0"
},
"devDependencies": {
"@ficusjs/core": "3.1.4",
"@ficusjs/renderers": "5.9.0",
"ava": "5.3.1",
"standard": "17.1.0"
},
"exports": {
".": {
"import": "./src/index.mjs"
}
}
}