-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.31 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
{
"name": "@alkemist/smart-tools",
"version": "1.1.30",
"description": "Smart tools",
"main": "lib/index.min.mjs",
"type": "module",
"types": "lib/index.d.ts",
"module": "lib/index.min.mjs",
"private": false,
"scripts": {
"dist": "rm -rf dist/* && tsc --project tsconfig.dist.json",
"def": "rm -rf lib/* && tsc --project tsconfig.def.json",
"prepublishOnly": "npm run dist && npm run def && webpack",
"test": "jest"
},
"files": [
"lib/*"
],
"repository": {
"type": "git",
"url": "git+https://github.com/alkemist/smart-tools.git"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"engines": {
"node": ">=16.0.0"
},
"keywords": [
"typescript"
],
"author": "Jaden ACHAIN",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/alkemist/smart-tools/issues"
},
"homepage": "https://github.com/alkemist/smart-tools#readme",
"devDependencies": {
"jest": "^29.7.0",
"jest-cli": "^29.5.0",
"jest-extended": "^4.0.0",
"terser-webpack-plugin": "^5.3.9",
"ts-jest": "^29.1.0",
"ts-loader": "^9.4.3",
"tsc": "^2.0.4",
"tslib": "^2.5.3",
"typescript": "^5.1.3",
"webpack": "^5.85.0",
"webpack-cli": "^5.1.1"
},
"dependencies": {
"@angular/core": "^16.2.7"
}
}