forked from sharkdp/insect
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.48 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
{
"name": "insect",
"version": "5.7.0",
"description": "High precision scientific calculator with support for physical units",
"author": "David Peter <[email protected]>",
"license": "MIT",
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/sharkdp/insect.git"
},
"homepage": "https://github.com/sharkdp/insect",
"bin": {
"insect": "./index.js"
},
"man": "docs/insect.1",
"directories": {
"test": "test"
},
"files": [
"output",
"web/media/insect.png"
],
"scripts": {
"setup": "npm run build",
"start": "npm run setup && run-p server esbuild:watch",
"esbuild:watch": "pulp -w --then 'npm run esbuild' build -m Insect",
"esbuild": "esbuild output/Insect/index.js --bundle --minify --outfile=web/insect.js --target=es6 --global-name=Insect",
"build": "psc-package install && pulp build -m Insect && npm run esbuild && node copy",
"prepack": "npm run build",
"server": "live-server web --open",
"test": "pulp test"
},
"bugs": {
"url": "https://github.com/sharkdp/insect/issues"
},
"dependencies": {
"clipboardy": "^3.0.0",
"decimal.js": "^10.3.1",
"jquery.terminal": "^2.18.0",
"keyboardevent-key-polyfill": "=1.1.0",
"line-reader": "^0.4.0",
"xdg-basedir": "^5.1.0"
},
"devDependencies": {
"live-server": "^1.2.1",
"npm-run-all": "^4.1.5",
"psc-package": "^4.0.1",
"pulp": "^16.0.0",
"purescript": "^0.15.2",
"esbuild": "^0.14.42"
}
}