-
-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
54 lines (54 loc) · 1.55 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
{
"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",
"karma": "lerna run karma",
"karma:window": "lerna run karma:window"
},
"devDependencies": {
"@types/elliptic": "6.4.18",
"@types/jest": "29.5.14",
"@types/node": "22.9.0",
"@typescript-eslint/eslint-plugin": "8.13.0",
"@typescript-eslint/parser": "8.13.0",
"can-npm-publish": "1.3.6",
"cross-env": "7.0.3",
"esdoc": "1.1.0",
"esdoc-standard-plugin": "1.0.0",
"eslint": "9.14.0",
"jasmine-core": "5.4.0",
"jest": "29.7.0",
"karma": "6.4.4",
"karma-chrome-launcher": "3.2.0",
"karma-cli": "2.0.0",
"karma-jasmine": "5.1.0",
"karma-typescript": "5.5.4",
"lerna": "8.1.9",
"ts-jest": "29.2.5",
"ts-loader": "9.5.1",
"typescript": "5.2.2",
"webpack": "5.96.1",
"webpack-cli": "5.1.4"
},
"resolutions": {
"colors": "1.4.0"
},
"overrides": {
"colors@1": "1.4.0"
}
}