-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.3 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.3 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
{
"name": "hashpipe",
"version": "0.0.10",
"description": "Object oriented shell experiment",
"homepage": "http://github.com/spro/hashpipe",
"repository": {
"type": "git",
"url": "http://github.com/spro/hashpipe.git"
},
"author": {
"name": "Sean Robertson",
"url": "http://sprobertson.com/"
},
"keywords": [],
"main": "lib/index.js",
"bin": {
"hashpipe": "lib/repl.js"
},
"scripts": {
"build-ts": "tsc",
"build-grammar": "pegjs -o src/grammar.js grammar.peg && cp src/grammar.js lib/grammar.js",
"build": "npm run build-grammar && npm run build-ts",
"test": "vitest run",
"test:watch": "vitest",
"test:ui": "vitest --ui",
"format": "prettier --write 'src/**/*.ts' 'tests/**/*.ts'",
"format:check": "prettier --check 'src/**/*.ts' 'tests/**/*.ts'"
},
"dependencies": {
"ansi": "0.3.x",
"async": "0.9.x",
"jquery": "^3.1.1",
"jsdom": "^27.0.0",
"minimist": "1.2.x",
"readline-vim": "0.3.x",
"redis": "0.10.x"
},
"devDependencies": {
"@types/async": "^3.2.25",
"@types/jquery": "^3.5.33",
"@types/jsdom": "^27.0.0",
"@types/minimist": "^1.2.5",
"@types/node": "^24.7.2",
"@vitest/ui": "^3.2.4",
"prettier": "^3.6.2",
"tsx": "^4.20.6",
"typescript": "^5.9.3",
"vitest": "^3.2.4"
}
}