-
Notifications
You must be signed in to change notification settings - Fork 38
Expand file tree
/
Copy pathpackage.json
More file actions
122 lines (122 loc) · 3.59 KB
/
package.json
File metadata and controls
122 lines (122 loc) · 3.59 KB
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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
{
"name": "riteway",
"version": "9.2.0",
"description": "Unit tests that always supply a good bug report when they fail.",
"type": "module",
"main": "source/riteway.js",
"module": "source/riteway.js",
"types": "./index.d.ts",
"exports": {
".": {
"import": "./source/riteway.js",
"types": "./index.d.ts"
},
"./vitest": {
"import": "./source/vitest.js",
"types": "./vitest.d.ts"
},
"./bun": {
"import": "./source/bun.js",
"types": "./bun.d.ts"
},
"./match": {
"import": "./source/match.js",
"types": "./match.d.ts"
},
"./render": {
"import": "./source/render-component.js",
"types": "./render-component.d.ts"
},
"./render-component": {
"import": "./source/render-component.js",
"types": "./render-component.d.ts"
},
"./esm/riteway.js": {
"import": "./source/riteway.js",
"types": "./index.d.ts"
},
"./esm/index.js": {
"import": "./source/riteway.js",
"types": "./index.d.ts"
},
"./esm/match.js": {
"import": "./source/match.js",
"types": "./match.d.ts"
},
"./esm/render.js": {
"import": "./source/render-component.js",
"types": "./render-component.d.ts"
},
"./esm/render-component.js": {
"import": "./source/render-component.js",
"types": "./render-component.d.ts"
},
"./esm/vitest.js": {
"import": "./source/vitest.js",
"types": "./vitest.d.ts"
},
"./esm/test.js": {
"import": "./source/test.js"
},
"./esm/match-test.js": {
"import": "./source/match-test.js"
},
"./esm/vitest.test.jsx": {
"import": "./source/vitest.test.jsx"
}
},
"bin": {
"riteway": "bin/riteway.js"
},
"scripts": {
"lint": "eslint source && echo 'Lint complete.'",
"lint-fix": "eslint --fix source && eslint --fix ./*.js",
"typecheck": "npx -p typescript tsc --esModuleInterop --rootDir . source/test.js --allowJs --checkJs --noEmit --lib es6 --jsx react --skipLibCheck && npx -p typescript tsc index.d.ts --noEmit --skipLibCheck && echo 'TypeScript check complete.'",
"ts": "npm run -s typecheck",
"test": "node source/test.js && vitest run",
"test:e2e": "vitest run --config vitest.config.e2e.js",
"esm": "cp source/*.js esm/ && cp source/*.jsx esm/ && cp esm/riteway.js esm/index.js && echo 'esm complete.'",
"watch": "watch 'clear && npm run -s test | tap-nirvana && npm run -s lint && npm run -s typecheck && npm run -s esm' source",
"precommit": "npm run -s test && npm run -s lint-fix && npm run -s typecheck",
"update": "updtr",
"release": "node release.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ericelliott/riteway.git"
},
"author": "Eric Elliott",
"license": "MIT",
"bugs": {
"url": "https://github.com/ericelliott/riteway/issues"
},
"homepage": "https://github.com/ericelliott/riteway#readme",
"devDependencies": {
"@types/cheerio": "^1.0.0",
"@types/node": "^24.7.0",
"@types/react": "^19.2.2",
"eslint": "^9.37.0",
"eslint-plugin-react": "^7.37.5",
"react": "^19.2.0",
"release-it": "^19.0.5",
"tap-nirvana": "1.1.0",
"typescript": "^5.9.3",
"updtr": "4.1.0",
"watch": "^1.0.2"
},
"dependencies": {
"@paralleldrive/cuid2": "^3.3.0",
"cheerio": "1.2.0",
"dotignore": "^0.1.2",
"error-causes": "^3.0.2",
"esm": "3.2.25",
"glob": "^11.0.3",
"minimist": "^1.2.8",
"open": "^11.0.0",
"react-dom": "^19.2.0",
"resolve": "^1.22.10",
"tape": "^5.9.0",
"vitest": "^3.2.4",
"zod": "^4.3.6"
}
}