-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
74 lines (74 loc) · 2.9 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
65
66
67
68
69
70
71
72
73
74
{
"name": "@nmshd/crypto",
"version": "2.1.0",
"description": "The Enmeshed crypto library.",
"homepage": "https://enmeshed.eu",
"repository": "github:nmshd/ts-crypto",
"license": "MIT",
"author": "j&s-soft GmbH",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"lib-web/nmshd.crypto.js",
"lib-web/nmshd.crypto.min.js",
"lib-web/nmshd.crypto.js.map",
"lib-web/nmshd.crypto.min.js.map",
"ui5.yaml"
],
"scripts": {
"bt": "npm run test:node && npm run build:node && npm run build:test && npm run bundle && npm run test:web",
"build": "npm run build:node && npm run build:test && npm run bundle",
"build:ci": "npm run build:node && .ci/writeBuildInformation.sh && npm run build:test && npm run bundle",
"build:node": "tsc -p tsconfig.json",
"build:test": "tsc -p tsconfig.test.json",
"bundle": "npm run bundle:lib && npm run bundle:min && npm run bundle:test",
"bundle:lib": "webpack --stats-all",
"bundle:min": "webpack --stats-all --config webpack.min.config.js",
"bundle:test": "webpack --stats-all --config webpack.test.config.js",
"cdep": "tsc && madge --circular dist",
"lint": "npm run lint:prettier && npm run lint:eslint && npm run lint:tsc",
"lint:eslint": "eslint --ext .ts ./src ./test",
"lint:prettier": "prettier --check .",
"lint:tsc": "tsc --noEmit && tsc -p test/tsconfig.json --noEmit",
"test": "npm run test:node && npm run test:web",
"test:local": "npm run test",
"test:ci": "npm run test",
"test:node": "mocha -r ts-node/register -r tsconfig-paths/register -r test/fixtures.ts ./test/index.ts --project ./test/tsconfig.json --exit",
"test:local:node": "npm run test:node",
"test:web": "browsertest-runner",
"test:web:debug": "browsertest-runner --debug"
},
"dependencies": {
"libsodium-wrappers-sumo": "0.7.15",
"uuid": "10.0.0"
},
"devDependencies": {
"@js-soft/eslint-config-ts": "^1.6.13",
"@js-soft/license-check": "1.0.9",
"@js-soft/ts-serval": "2.0.10",
"@types/chai": "^5.0.0",
"@types/libsodium-wrappers-sumo": "^0.7.8",
"@types/mocha": "^10.0.9",
"@types/node": "^22.7.7",
"@types/uuid": "^10.0.0",
"@typescript-eslint/eslint-plugin": "^8.10.0",
"bt-runner": "^4.0.4",
"chai": "^4.4.1",
"copy-webpack-plugin": "^12.0.2",
"eslint": "^8.57.1",
"madge": "^8.0.0",
"mocha": "^10.7.3",
"prettier": "^3.3.3",
"terser-webpack-plugin": "^5.3.10",
"ts-node": "^10.9.2",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.6.3",
"webpack": "^5.95.0",
"webpack-cli": "^5.1.4"
},
"publishConfig": {
"access": "public",
"provenance": true
}
}