-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
87 lines (87 loc) · 2.35 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
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "@ssv/ngx.ux",
"version": "2.1.2",
"versionSuffix": "",
"description": "UX essentials for building apps, utilities which enables you writing richer apps easier.",
"keywords": [
"sketch7",
"ngx",
"angular15",
"angular",
"ssv",
"ux",
"ui",
"viewport",
"uiutils",
"cdk"
],
"scripts": {
"start": "npm run build -- --watch",
"example": "cd ./examples && npm start",
"build": "ng-packagr -p ng-package.json",
"clean": "rimraf dist",
"lint": "eslint -c .eslintrc.js --ext .ts \"src/**/*.ts\"",
"test": "jest",
"tdd": "jest --watch",
"test-debug": "node --inspect-brk ./node_modules/jest/bin/jest.js --runInBand --env jest-environment-node-debug",
"test-devt": "devtool ./node_modules/jest/bin/jest.js --runInBand --env jest-environment-node-debug",
"__CI__": "",
"pre-release-build": "echo TODO: version placeholder as gitaction or script",
"_pre-release-build": "gulp prebuild:rel",
"release": "npm publish ./dist --access=public"
},
"author": "Stephen Lautier <[email protected]>",
"license": "MIT",
"private": false,
"repository": {
"type": "git",
"url": "https://github.com/sketch7/ngx.ux.git"
},
"dependencies": {
"tslib": "^2.0.0"
},
"peerDependencies": {
"@angular/core": ">=6.0.0",
"lodash": "^4.0.0",
"rxjs": ">=6.0.0"
},
"devDependencies": {
"@angular/common": "^15.0.0",
"@angular/compiler": "^15.0.0",
"@angular/compiler-cli": "^15.0.0",
"@angular/core": "^15.0.0",
"@angular/platform-browser": "^15.0.0",
"@angular/platform-browser-dynamic": "^15.0.0",
"@ssv/tools": "~0.10.2",
"@types/jest": "^29.5.0",
"@types/lodash": "^4.14.134",
"gulp": "^4.0.2",
"gulp-bump": "^3.2.0",
"gulp-conventional-changelog": "^2.0.32",
"jest": "^29.5.0",
"jest-environment-node-debug": "^2.0.0",
"lodash": "^4.17.11",
"ng-packagr": "^15.0.0",
"require-dir": "^1.2.0",
"rimraf": "^3.0.2",
"rxjs": "^6.6.3",
"ts-jest": "^29.1.0",
"typescript": "~4.8.2",
"yargs": "^16.1.0",
"zone.js": "~0.11.4"
},
"resolutions": {
"natives": "1.1.3"
},
"jest": {
"transform": {
".(ts|tsx)": "ts-jest"
},
"testRegex": "(/__tests__/.*|\\.(test|spec))\\.(ts|tsx|js)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js"
]
}
}