-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 2.66 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
{
"name": "@js-soft/ts-serval",
"version": "2.0.11",
"description": "TypeScript Runtime Serialization and Validation",
"homepage": "https://github.com/js-soft/ts-serval#readme",
"repository": "github:js-soft/ts-serval",
"license": "MIT",
"author": "j&s-soft GmbH",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"lint": "npm run lint:prettier && npm run lint:eslint && npm run lint:tsc",
"lint:prettier": "prettier --check .",
"lint:eslint": "eslint --ext .ts ./src ./test",
"lint:tsc": "tsc --noEmit && tsc -p test/tsconfig.json --noEmit",
"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 bundle",
"build:node": "tsc -p tsconfig.json && madge --circular dist",
"build:ci": "npm run build:node && .ci/writeBuildInformation.sh && npm run build:test && npm run bundle",
"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 --config webpack.config.js",
"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",
"test:local": "npm run test",
"test:local:node": "npm run test:node",
"test:ci": "npm run test",
"test": "npm run test:node && npm run test:web",
"test:node": "mocha -r ts-node/register -r tsconfig-paths/register ./test/index.ts --project ./test/tsconfig.json --exit",
"test:web": "browsertest-runner",
"test:web:debug": "browsertest-runner --debug"
},
"dependencies": {
"lodash": "^4.17.21",
"reflect-metadata": "^0.2.2"
},
"devDependencies": {
"@js-soft/eslint-config-ts": "1.6.5",
"@js-soft/license-check": "1.0.9",
"@types/chai": "^4.3.19",
"@types/lodash": "^4.17.7",
"@types/mocha": "^10.0.7",
"@types/node": "^22.5.4",
"bt-runner": "^4.0.3",
"buffer": "^6.0.3",
"chai": "^4.3.10",
"eslint": "8.53.0",
"madge": "^8.0.0",
"mocha": "^10.2.0",
"mocha-param": "^2.0.1",
"prettier": "^3.3.3",
"terser-webpack-plugin": "5.3.9",
"ts-node": "^10.9.2",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.6.2",
"webpack": "^5.89.0",
"webpack-cli": "^5.1.4"
},
"publishConfig": {
"access": "public",
"provenance": true
}
}