-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
83 lines (83 loc) · 2.13 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "tape-ui",
"version": "0.0.1",
"description": "Terminal UI test runner for Tape",
"license": "MIT",
"keywords": [
"terminal",
"cli",
"testing",
"tape",
"tap",
"blessed"
],
"homepage": "https://github.com/andreidmt/tape-ui",
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/andreidmt/tape-ui.git"
},
"bugs": {
"url": "https://github.com/andreidmt/tape-ui/issues"
},
"author": {
"name": "Andrei Dumitrescu",
"url": "https://github.com/andreidmt"
},
"main": "src/index.js",
"bin": {
"tape-ui": "bin/cli.js"
},
"scripts": {
"----UTIL": "",
"setup": "rm -rf dist/* && rm -rf ./node_modules && npm i && npm audit fix",
"setup:ci": "npm ci && npm audit fix",
"update": "npm-check --update",
"----DEV": "",
"----BUILD": "",
"prepublishOnly": "npm test && npm run lint",
"----LINTING": "",
"lint:md": "markdownlint *.md",
"lint:js": "eslint --ext .jsx,.js src/",
"lint": "npm run lint:md && npm run lint:js",
"----TESTS": "",
"test": "tape src/**/*.test.js",
"tdd": "nodemon --watch src --exec \"npm test\""
},
"dependencies": {
"@asd14/m": "^4.4.1",
"dependency-tree": "^8.0.0",
"fast-deep-equal": "^3.1.3",
"figures": "^3.2.0",
"glob": "^7.1.6",
"just-a-list.redux": "^7.7.0",
"minimist": "^1.2.5",
"neo-blessed": "^0.2.0",
"redux": "^4.0.5",
"tape": "^5.1.1",
"winston": "^3.3.3"
},
"peerDependencies": {
"tape": "^5.1.0"
},
"devDependencies": {
"@asd14/eslint-config": "^5.20.0",
"eslint": "^7.17.0",
"eslint-config-prettier": "^7.1.0",
"eslint-plugin-compat": "^3.9.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsdoc": "^30.7.13",
"eslint-plugin-json": "^2.1.2",
"eslint-plugin-no-inferred-method-name": "^2.0.0",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-unicorn": "^25.0.1",
"markdownlint-cli": "^0.26.0",
"nodemon": "^2.0.7",
"npm-check": "^5.9.2",
"prettier": "^2.2.1",
"semantic-release": "^17.3.1"
},
"engines": {
"node": ">=12"
}
}