-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.65 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.65 KB
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": "@emscripten-forge/mambajs-root",
"description": "Solve conda environments and pip packages in your browser",
"private": true,
"scripts": {
"build": "lerna run build",
"dev:build:exe": "lerna run dev:build:exe",
"windev:build:exe": "lerna run windev:build:exe",
"lint": "yarn run eslint && yarn run prettier",
"lint:check": "yarn run eslint:check && yarn run prettier:check",
"prettier": "prettier --list-different --write \"packages/**/*.ts\"",
"prettier:check": "prettier --check \"packages/**/*.ts\"",
"eslint": "eslint --ext .ts --fix .",
"eslint:check": "eslint --ext .ts.",
"test": "rimraf unittests/testlib && npx tsc -p unittests && node unittests/runner.js"
},
"workspaces": {
"packages": [
"packages/*"
]
},
"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": "Emscripten-forge developers",
"license": " BSD-3-Clause license ",
"devDependencies": {
"@eslint/js": "^9.13.0",
"@typescript-eslint/eslint-plugin": "^6.13.2",
"@typescript-eslint/parser": "^6.13.2",
"earl": "^1.3.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",
"lerna": "^8.2.2",
"prettier": "^3.3.3",
"process": "^0.11.10",
"rimraf": "^3.0.2",
"typescript": "^5",
"url": "^0.11.4"
}
}