-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
64 lines (64 loc) · 1.94 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
{
"name": "@emscripten-forge/mambajs",
"version": "0.1.0",
"description": "A simple project for downloading conda packages and saving them into browser memory",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"clean": "rimraf lib && rimraf tsconfig.tsbuildinfo",
"build": "yarn run clean && yarn run build:esbuild && yarn run build:types",
"build:types": "tsc --declaration src/index.ts --emitDeclarationOnly --outDir ./lib",
"prettier": "prettier --list-different --write \"src/**/*.ts\"",
"prettier:check": "prettier --check \"src/**/*.ts\"",
"eslint": "eslint --ext .ts --fix .",
"eslint:check": "eslint --ext .ts.",
"test": "jest",
"build:esbuild": "node esbuild.config.js"
},
"files": [
"lib/*"
],
"publishConfig": {
"access": "public"
},
"keywords": [
"conda packages"
],
"homepage": "https://github.com/emscripten-forge/mambajs",
"bugs": {
"url": "https://github.com/emscripten-forge/mambajs/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/emscripten-forge/mambajs"
},
"author": "Anastasiia Sliusar",
"license": "MIT",
"dependencies": {
"@emscripten-forge/untarjs": "^5.0.0"
},
"devDependencies": {
"@esbuild-plugins/node-globals-polyfill": "^0.2.3",
"@esbuild-plugins/node-modules-polyfill": "^0.2.2",
"@eslint/js": "^9.13.0",
"@types/jest": "^29.5.14",
"@types/node": "^22.8.1",
"@typescript-eslint/eslint-plugin": "^6.13.2",
"@typescript-eslint/parser": "^6.13.2",
"assert": "^2.1.0",
"esbuild": "^0.24.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "~9.1.0",
"eslint-plugin-jest": "~27.6.0",
"eslint-plugin-prettier": "~5.0.1",
"eslint-plugin-react": "~7.33.2",
"globals": "^15.11.0",
"jest": "^29.7.0",
"prettier": "^3.3.3",
"process": "^0.11.10",
"rimraf": "^3.0.2",
"ts-jest": "^29.2.5",
"typescript": "^5",
"url": "^0.11.4"
}
}