-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
71 lines (71 loc) · 2.04 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
{
"name": "bs-excmd",
"version": "2.0.0-alpha.0",
"description": "OCaml component of Tridactyl's parser for Vi-style command-line, rc-files, and vimscript",
"main": "lib/parser.bs.js",
"module": "src/parser.bs.js",
"files": [
"bsconfig.json",
"lib",
"shim",
"src",
"test",
"!lib/bs",
"!lib/js",
"!lib/ocaml",
"!**/dune",
"!**/.merlin"
],
"scripts": {
"build:scripts": "cd scripts && bsb -make-world",
"build:doc": "make build-doc",
"build": "make build-ml",
"watch": "bsb -make-world -w",
"clean": "make clean",
"clean:all": "make clean-all",
"prepare": "npm run clean && npm run build",
"test:js": "jest",
"test:js:coverage": "cd ../../ && jest --coverage",
"test:ml": "dune runtest",
"test:ml:promote": "dune promote",
"test": "npm-run-all build --parallel test:js test:ml",
"format:ml": "make format-ml"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ELLIOTTCABLE/excmd.js.git"
},
"author": "ELLIOTTCABLE <[email protected]>",
"license": "ISC",
"bugs": {
"url": "https://github.com/ELLIOTTCABLE/excmd.js/issues"
},
"homepage": "https://github.com/ELLIOTTCABLE/excmd.js#readme",
"dependencies": {
"@babel/runtime": "~7.12.5",
"@elliottcable/bs-result": "^12.0.0",
"bs-deriving": "^44.1.0",
"bs-gen": "^0.5.3",
"bs-platform": "^5.2.1",
"bs-sedlex": "^20.0.0",
"bs-uchar": "^2.0.0",
"fast-text-encoding": "^1.0.0"
},
"devDependencies": {
"@babel/cli": "^7.12.10",
"@babel/core": "^7.12.10",
"@babel/preset-env": "^7.12.11",
"@types/terminal-kit": "^1.28.2",
"babel-jest": "^24.9.0",
"jest": "^26.6.3",
"lint-staged": "^10.5.3",
"node-jq": "^1.12.0",
"npm-run-all": "^4.1.5",
"ppx-deriving": "^44.1.0",
"ppx-sedlex": "^20.0.0",
"prettier": "^1.19.1",
"terminal-kit": "^1.45.9",
"typedoc": "^0.20.19",
"typescript": "^4.1.3"
}
}