-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.69 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
{
"name": "watch-it-out",
"version": "0.0.0-development",
"description": "A way to watch a file or directory for changes and run a command when they occur.",
"files": [
"dist/*"
],
"module": "dist/index.esm.js",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"release": {
"branches": [
{
"name": "main",
"channel": "latest"
}
]
},
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/tenlisboa/watch-it-out.git"
},
"scripts": {
"test": "npx ts-mocha --recursive '__tests__/**/*.test.ts'",
"test:dev": "npm test -- -w --watch-files '**/*.ts'",
"test:cov": "npx nyc npm test",
"build": "node build.js",
"lint": "eslint --ext .js,.ts src",
"format": "prettier --ignore-path .gitignore --write \"**/*.+(js|ts|json)\"",
"semantic-release": "semantic-release"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {},
"peerDependencies": {},
"devDependencies": {
"@types/chai": "^4.3.5",
"@types/mocha": "^10.0.1",
"@types/node": "^20.2.5",
"@typescript-eslint/eslint-plugin": "^5.59.8",
"@typescript-eslint/parser": "^5.59.8",
"chai": "^4.3.7",
"esbuild": "^0.17.19",
"eslint": "^8.42.0",
"eslint-config-prettier": "^8.8.0",
"eslint-config-standard-with-typescript": "^35.0.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-n": "^15.7.0",
"eslint-plugin-promise": "^6.1.1",
"mocha": "^10.2.0",
"npm-dts": "^1.3.12",
"nyc": "^15.1.0",
"prettier": "^2.8.8",
"semantic-release": "^21.0.2",
"sinon": "^15.1.0",
"ts-mocha": "^10.0.0",
"typescript": "^5.1.3"
}
}