-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
99 lines (99 loc) · 3.71 KB
/
package.json
File metadata and controls
99 lines (99 loc) · 3.71 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"name": "@michaelcoxon/utilities",
"version": "11.1.0",
"description": "utilities for JS and TypeScript",
"main": "dist/index.js",
"types": "lib/index.d.ts",
"module": "lib/index.js",
"sideEffects": false,
"scripts": {
"build:debug": "npm-run-all -s build:lib:debug -p build:dist:debug",
"build:dist": "webpack --node-env production",
"build:dist:debug": "webpack --node-env development",
"build:dist:stats": "webpack --node-env production --profile --json > webpack-stats.json",
"build:dist:stats:debug": "webpack --node-env development --profile --json > webpack-stats.json",
"build:docs": "npm-run-all -s build:docs:typedoc build:docs:jekyll",
"build:docs:jekyll": "npm-run-all -s build:dist build:docs:jekyll:copyoutput",
"build:docs:jekyll:copyoutput": "copyfiles dist/**/* docs/assets/",
"build:docs:typedoc": "typedoc --logLevel Verbose --out docs/api src",
"build:lib": "npm-run-all -s clean:lib build:lib:typescript",
"build:lib:debug": "npm-run-all -s clean:lib build:lib:typescript:debug",
"build:lib:typescript": "tsc -p ./tsconfig.build.json",
"build:lib:typescript:debug": "tsc --sourceMap -p ./tsconfig.build.json",
"build": "npm-run-all -s build:lib -p build:dist",
"clean:lib": "rimraf lib",
"clean:dist": "rimraf dist",
"clean:docs": "rimraf --glob docs/api/**/*",
"clean": "npm-run-all -p clean:lib clean:dist clean:docs",
"prepack": "npm-run-all -s clean test:prepack build:lib -p build:dist build:docs",
"start:jekyll": "cd docs && bundle exec jekyll serve docs/",
"test:coverage": "jest --coverage",
"test:jest": "jest",
"test:madge": "madge --extensions ts --circular .",
"test:prepack": "npm-run-all -s test:coverage test:madge",
"test": "npm-run-all -s test:jest test:madge"
},
"repository": {
"type": "git",
"url": "git+https://github.com/michaelcoxon/utilities.git"
},
"keywords": [
"utilities",
"typescript",
"collection",
"enumerable",
"linq",
"enumerator",
"ienumerable",
"list",
"array",
"comparer",
"exception",
"logging",
"format"
],
"author": "Michael Coxon",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/michaelcoxon/utilities/issues"
},
"homepage": "https://github.com/michaelcoxon/utilities#readme",
"devDependencies": {
"@types/jest": "^29.5.7",
"@types/lodash": "^4.14.201",
"@types/node": "^20.8.10",
"@types/prop-types": "^15.7.9",
"@types/shelljs": "^0.8.14",
"@types/webpack-env": "^1.18.3",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"ajv": "^8.12.0",
"browserslist": "^4.22.1",
"copyfiles": "^2.4.1",
"dts-bundle": "^0.7.3",
"eslint": "^8.56.0",
"file-loader": "^6.2.0",
"jest": "^29.7.0",
"json-loader": "^0.5.7",
"lodash": "^4.17.21",
"lodash-es": "^4.17.21",
"madge": "^6.1.0",
"minimist": "^1.2.8",
"npm-run-all": "^4.1.5",
"rimraf": "^5.0.5",
"source-map-support": "^0.5.21",
"string-replace-loader": "^3.1.0",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typedoc": "^0.25.3",
"typescript": "^4.8.4",
"webpack": "^5.89.0",
"webpack-bundle-analyzer": "^4.9.1",
"webpack-cli": "^5.1.4",
"webpack-cyclic-dependency-checker": "^0.0.1",
"webpack-log": "^3.0.2"
},
"dependencies": {
"tslib": "^2.6.2"
}
}