forked from sketch7/ngx.ux
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 2.19 KB
/
package.json
File metadata and controls
83 lines (83 loc) · 2.19 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
{
"name": "@ssv/ngx.ux",
"version": "1.0.0",
"description": "UX essentials for building apps, utilities which enables you writing richer apps easier.",
"keywords": [
"sketch7",
"ngx",
"angular2",
"angular",
"ssv",
"ux",
"ui",
"viewport",
"uiutils",
"cdk"
],
"scripts": {
"start": "npm run build -- --watch",
"build": "ng-packagr -p ng-package.json",
"clean": "rimraf dist",
"lint": "tslint -p . -c tslint.json -t stylish && tsc",
"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",
"publish:rel": "npm publish dist --access=public"
},
"author": "Stephen Lautier <stephen.lautier@outlook.com>",
"license": "MIT",
"private": false,
"repository": {
"type": "git",
"url": "https://github.com/sketch7/ngx.ux.git"
},
"dependencies": {},
"peerDependencies": {
"@angular/core": ">=6.0.0",
"lodash": "^4.0.0",
"rxjs": "^6.0.0"
},
"devDependencies": {
"@angular/common": "^8.0.0",
"@angular/compiler": "^8.0.0",
"@angular/compiler-cli": "^8.0.0",
"@angular/core": "^8.0.0",
"@angular/platform-browser": "^8.0.0",
"@angular/platform-browser-dynamic": "^8.0.0",
"@ssv/tools": "^0.8.1",
"@types/jest": "^24.0.13",
"@types/lodash": "^4.14.134",
"gulp": "^4.0.2",
"gulp-bump": "^3.1.3",
"gulp-conventional-changelog": "^2.0.19",
"jest": "^24.8.0",
"jest-environment-node-debug": "^2.0.0",
"lodash": "^4.17.11",
"ng-packagr": "^5.3.0",
"reflect-metadata": "^0.1.13",
"require-dir": "^1.2.0",
"rimraf": "^2.6.3",
"rxjs": "^6.5.2",
"ts-jest": "^24.0.2",
"tsickle": "^0.35.0",
"tslint": "^5.17.0",
"typescript": "~3.4.5",
"yargs": "^13.2.4",
"zone.js": "^0.9.1"
},
"resolutions": {
"natives": "1.1.3"
},
"jest": {
"transform": {
".(ts|tsx)": "ts-jest"
},
"testRegex": "(/__tests__/.*|\\.(test|spec))\\.(ts|tsx|js)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js"
]
}
}