-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.15 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
{
"name": "ava-patterns",
"version": "0.0.0",
"description": "Some useful helpers for tests in AVA",
"keywords": [],
"homepage": "https://github.com/vinsonchuong/ava-patterns",
"bugs": "https://github.com/vinsonchuong/ava-patterns/issues",
"license": "MIT",
"author": "Vinson Chuong <[email protected]>",
"repository": "vinsonchuong/ava-patterns",
"main": "index.js",
"scripts": {
"test": "xo && tsc --noEmit && ava",
"prepublishOnly": "tsc --emitDeclarationOnly",
"release": "semantic-release"
},
"type": "module",
"dependencies": {
"fs-extra": "^11.1.1",
"p-event": "^5.0.1",
"passing-notes": "^6.5.5",
"strip-indent": "^4.0.0",
"tempy": "^3.0.0"
},
"devDependencies": {
"@types/node": "^18.15.12",
"ava": "^5.2.0",
"got": "^12.0.1",
"semantic-release": "^21.0.1",
"xo": "^0.54.1"
},
"ava": {
"verbose": true
},
"xo": {
"prettier": true,
"space": 2,
"semicolon": false,
"rules": {
"import/extensions": "off",
"import/no-anonymous-default-export": "off",
"import/no-useless-path-segments": "off",
"unicorn/import-index": "off"
}
}
}