-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 loc) · 1.93 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
{
"name": "@minivera/testifyjs",
"version": "1.1.0",
"description": "Declarative test framework for JavaScript inspired by the modern testing standards, without any magic",
"main": "dist/testify.js",
"module": "dist/testify.js",
"source": "testify.ts",
"types": "dist/testify.d.ts",
"typings": "dist/testify.d.ts",
"files": [
"lib",
"dist"
],
"type": "module",
"engines": {
"node": ">=16"
},
"scripts": {
"prepublishOnly": "npm run build",
"build": "tsc",
"build:test": "tsc -p tsconfig.test.json",
"test": "npm run build:test && node ./dist/test.js",
"test:coverage": "npm run build:test && nyc node ./dist/test.js",
"lint": "eslint",
"tsc": "tsc --noEmit"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Minivera/testifyjs.git"
},
"keywords": [
"node",
"test",
"test-runner",
"javascript",
"typescript"
],
"author": "Minivera",
"license": "MIT",
"bugs": {
"url": "https://github.com/Minivera/testifyjs/issues"
},
"homepage": "https://github.com/Minivera/testifyjs#readme",
"dependencies": {
"ink": "^4.4.1",
"ms": "^2.1.3",
"react": "^18.2.0"
},
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "^1.0.2",
"@types/chai": "^4.3.6",
"@types/ms": "^0.7.32",
"@types/node": "^20.7.0",
"@types/react": "^18.2.23",
"@types/sinon": "^10.0.17",
"@typescript-eslint/eslint-plugin": "^6.7.3",
"@typescript-eslint/parser": "^6.7.3",
"chai": "^4.3.9",
"eslint": "^8.50.0",
"eslint-config-prettier": "^9.0.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-promise": "^6.1.1",
"ink-testing-library": "^3.0.0",
"nyc": "^15.1.0",
"prettier": "^3.0.3",
"sinon": "^16.0.0",
"source-map-support": "^0.5.21",
"typescript": "^5.2.2"
}
}