-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 2.25 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
{
"name": "hclang",
"version": "0.5.14",
"description": "Homoiconic C: Programming without a Language",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/TheSwanFactory/hclang.git"
},
"author": "Ernest N. Prabhakar, Ph.D.",
"keywords": [
"language",
"markup",
"programming",
"html",
"maml",
"hc",
"interpreter",
"cli"
],
"type": "module",
"directories": {
"lib": "./lib",
"src": "./src",
"test": "./test"
},
"files": [
"lib"
],
"bin": {
"hc": "lib/src/cli/hc.js"
},
"scripts": {
"bs:html": "tail +3 -q hc/BitScheme.hc hc/BitScheme-1.hc > doc/BitScheme.adoc && asciidoctor doc/BitScheme.adoc && open doc/BitScheme.html",
"bs:all": "npm run build && npm run bs:html && npm run bs",
"bs": "node lib/src/cli/hc.js hc/BitScheme.hc -t",
"b1": "node lib/src/cli/hc.js hc/BitScheme-1.hc -t",
"testdoc": "npm run build && node lib/src/cli/hc.js hc/testdoc.hc -t",
"check": "grep -e 'only' -e 'skip' test/*/* || echo 'Ran all tests'",
"clean": "rimraf lib dist && rm -f *.log.* src/*.js src/*/*.js test/*.js test/*/*.js",
"clean-git": "git branch -D `git branch | grep -v '\\*' | grep -v 'master'`",
"debug": "echo 'Use `debugger;`\n' && npm --inspect-brk ",
"done": "npm run clean && npm run bs:all && npm run check && npm run tag && npm install && git commit -am 'update version'",
"paper": "npm run build && node lib/src/cli/hc.js hc/white-paper.hc -t",
"tag": "bump patch -ct package*.json README.md src/version.ts",
"tag:minor": "bump minor -ct package*.json README.md src/version.ts",
"ts": "npx tsc --pretty --inlineSourceMap && chmod a+x ./lib/src/cli/hc.js",
"ts:version": "echo TypeScript `tsc --version` ",
"verbose": "NODE_DEBUG=* npm run test"
},
"dependencies": {
"chalk": "^5.3.0",
"inquirer": "^9.2.12",
"jsbi": "^4.3.0",
"minimist": "^1.2.8",
"node-fetch": "^3.3.2",
"npm-check-updates": "^16.14.12",
"version-bump-prompt": "^6.1.0"
},
"devDependencies": {
"@types/chai": "^4.3.11",
"@types/minimist": "^1.2.5",
"@types/node": ">=20.10.5",
"asciidoctor": "^3.0.0",
"chai": "^4.3.10",
"mem": "^9.0.2",
"pug": "^3.0.2",
"rimraf": "5.0.5"
}
}