-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 974 Bytes
/
package.json
File metadata and controls
47 lines (47 loc) · 974 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
45
46
47
{
"name": "@casd/expect",
"version": "0.0.5",
"description": "Simple javascript expect library, no frills",
"author": "Cas Dijkman <info@cdijkman.nl> (https://cdijkman.nl)",
"keywords": [
"test",
"expect",
"simple"
],
"homepage": "https://cdijkman.nl/",
"license": "GPL-3.0-only",
"repository": {
"type": "git",
"url": "git+https://github.com/casdijkman/expect.git"
},
"main": "dist/expect.js",
"types": "dist/expect.d.ts",
"packageManager": "yarn@4.6.0",
"bugs": {
"url": "https://github.com/casdijkman/expect/issues"
},
"scripts": {
"build": "tsc",
"lint": "xo --space"
},
"devDependencies": {
"@types/xo": "^0",
"typescript": "^5.8.3",
"xo": "^0.60.0"
},
"xo": {
"ignores": [
"dist"
],
"rules": {
"@typescript-eslint/object-curly-spacing": [
"error",
"always"
],
"arrow-parens": [
"error",
"always"
]
}
}
}