-
-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.89 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.89 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
54
55
56
57
58
59
60
61
62
63
64
{
"name": "jscu",
"private": true,
"license": "MIT",
"version": "1.0.7",
"root_package": "packages/js-crypto-utils",
"workspaces": [
"packages/*"
],
"scripts": {
"flow:version": "git checkout develop && bash scripts/version.sh",
"release:start": "git flow release start v$npm_package_version",
"release:finish": "git flow release finish v$npm_package_version",
"release:push": "git push --all && git push origin v$npm_package_version",
"clean": "lerna clean --yes && lerna run cleanup && rm -rf ./node_modules",
"babel": "lerna run babel",
"build": "lerna run build",
"docs": "./node_modules/.bin/esdoc -c .esdoc.json",
"test": "lerna run test",
"test:vitest": "lerna run vitest",
"test:browser": "lerna run vitest:browser",
"test:web": "lerna run vitest:browser",
"test:all": "pnpm run test && pnpm run test:web",
"vitest": "lerna run vitest",
"vitest:browser": "lerna run vitest:browser",
"vitest:watch": "lerna run vitest:watch",
"vitest:ui": "lerna run vitest:ui"
},
"devDependencies": {
"@types/elliptic": "6.4.18",
"@types/jest": "30.0.0",
"@types/node": "25.9.2",
"@typescript-eslint/eslint-plugin": "8.60.1",
"@typescript-eslint/parser": "8.60.1",
"@vitest/browser": "4.1.8",
"@vitest/browser-playwright": "4.1.8",
"@vitest/coverage-v8": "4.1.8",
"@vitest/ui": "4.1.8",
"can-npm-publish": "1.3.6",
"cross-env": "10.1.0",
"esdoc": "1.1.0",
"esdoc-standard-plugin": "1.0.0",
"eslint": "10.4.1",
"glob": "13.0.6",
"jest": "30.4.2",
"lerna": "9.0.7",
"playwright": "1.60.0",
"ts-jest": "29.4.11",
"ts-loader": "9.6.0",
"typescript": "6.0.3",
"vitest": "4.1.8",
"webpack": "5.107.2",
"webpack-cli": "7.0.3"
},
"resolutions": {
"colors": "1.4.0"
},
"engines": {
"node": ">=24.0.0"
},
"overrides": {
"colors@1": "1.4.0"
}
}