-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1011 Bytes
/
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
{
"name": "cli-interactive",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build:types": "tsc -p tsconfig-build-types.json",
"check:types": "tsc",
"coverage": "c8 --reporter=lcov ava",
"coverage:view": "c8 --reporter=html --reporter=text ava",
"lint": "standard",
"lint:fix": "standard --fix",
"release:first": "npm run release -- --first-release",
"test": "ava",
"test:watch": "ava --watch",
"prepare": "husky",
"check:types:watch": "tsc --watch"
},
"keywords": [],
"author": "",
"license": "MIT",
"devDependencies": {
"ava": "^6.1.2",
"c8": "^9.1.0",
"commitizen": "^4.3.0",
"cz-conventional-changelog": "^3.3.0",
"husky": "^9.0.11",
"sinon": "^17.0.1",
"standard": "^17.1.0",
"typescript": "^5.4.4"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"type": "module",
"standard": {
"includes": [
"test"
]
}
}