-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 984 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
44
45
46
47
48
49
50
51
{
"name": "trr",
"description": "A convenient automated test re-runner",
"version": "1.0.4",
"main": "index.js",
"bin": {
"trr": "index.js"
},
"scripts": {
"lint": "eslint . --fix",
"test": "npm run lint"
},
"author": "Ryan Block <hello@ryanblock.com>",
"license": "Apache-2.0",
"keywords": [
"automation",
"cli",
"dev tools",
"local dev",
"test runner",
"testing",
"tests",
"unit tests"
],
"repository": {
"type": "git",
"url": "https://github.com/ryanblock/trr.git"
},
"files": [
"index.js"
],
"engines": {
"node": ">=12"
},
"dependencies": {
"minimist": "^1.2.8",
"node-watch": "^0.7.3",
"picocolors": "^1.0.0",
"update-notifier-cjs": "^5.1.6"
},
"devDependencies": {
"@ryanblock/eslint-config": "^1.1.1",
"eslint": "^8.37.0"
},
"eslintConfig": {
"extends": "@ryanblock/eslint-config",
"parserOptions": {
"ecmaVersion": 2020
}
}
}