-
-
Notifications
You must be signed in to change notification settings - Fork 126
/
package.json
59 lines (59 loc) · 1.77 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
{
"name": "insect",
"version": "5.9.0",
"description": "High precision scientific calculator with support for physical units",
"author": "David Peter <[email protected]>",
"license": "MIT",
"type": "module",
"engines": {
"node": ">=10"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sharkdp/insect.git"
},
"homepage": "https://github.com/sharkdp/insect",
"bin": {
"insect": "./index.cjs"
},
"man": "docs/insect.1",
"directories": {
"test": "test"
},
"files": [
"docs/insect.1",
"web/media/insect.svg",
"insect.desktop",
"LICENSE_THIRDPARTY"
],
"scripts": {
"setup": "npm run build",
"start": "node copy && run-p server esbuild:watch",
"esbuild:watch": "spago build -w --then 'npm run esbuild:browser'",
"esbuild": "npm run esbuild:browser && npm run esbuild:node",
"esbuild:browser": "esbuild output/Insect/index.js --bundle --minify --outfile=web/insect.js --target=es6 --global-name=Insect",
"esbuild:node": "esbuild index.dev.js --bundle --minify --outfile=index.cjs --target=node10 --platform=node --format=iife --external:./node_modules/*",
"build": "spago build && npm run esbuild && node copy",
"prepack": "spago build && npm run esbuild:node",
"server": "live-server web --open",
"test": "spago -x test.dhall test"
},
"bugs": {
"url": "https://github.com/sharkdp/insect/issues"
},
"dependencies": {
"clipboardy": "^2.3.0",
"decimal.js": "10.3.1",
"jquery.terminal": "^2.18.0",
"keyboardevent-key-polyfill": "=1.1.0",
"line-reader": "^0.4.0",
"xdg-basedir": "^4.0.0"
},
"devDependencies": {
"esbuild": "^0.18.0",
"live-server": "^1.2.1",
"npm-run-all": "^4.1.5",
"purescript": "^0.15.2",
"spago": "^0.21.0"
}
}