This repository has been archived by the owner on Jul 31, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
119 lines (119 loc) · 7.14 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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
{
"name": "@angular-dynaform/main",
"version": "3.0.3",
"license": "MIT",
"scripts": {
"ng": "ng",
"start:basic-example": "ng serve basic-example",
"start:material-example": "ng serve material-example",
"start:nativescript-example": "cd projects/nativescript-example && npm run start",
"systemjs:basic-example": "lite-server -c projects/basic-example/systemjs/bs-config.json",
"systemjs:material-example": "lite-server -c projects/material-example/systemjs/bs-config.json",
"build:core": "ng build @angular-dynaform/core",
"build:basic": "ng build @angular-dynaform/basic",
"build:basic-example": "ng build basic-example",
"build:material": "ng build @angular-dynaform/material",
"build:material-example": "ng build material-example",
"build:nativescript": "ng build @angular-dynaform/nativescript",
"build:nativescript-example": "cd projects/nativescript-example && npm run build",
"debug:test:core": "ng test @angular-dynaform/core --browsers Chrome",
"debug:test:basic": "ng test @angular-dynaform/basic --browsers Chrome",
"debug:test:material": "ng test @angular-dynaform/material --browsers Chrome",
"test": "make test",
"test:core": "ng test @angular-dynaform/core --browsers ChromeHeadless",
"test:basic": "ng test @angular-dynaform/basic --browsers ChromeHeadless",
"test:material": "ng test @angular-dynaform/material --browsers ChromeHeadless",
"coverage:core": "ng test @angular-dynaform/core --watch=false --code-coverage --browsers ChromeHeadless",
"coverage:basic": "ng test @angular-dynaform/basic --watch=false --code-coverage --browsers ChromeHeadless",
"coverage:material": "ng test @angular-dynaform/material --watch=false --code-coverage --browsers ChromeHeadless",
"coverage:coveralls": "coveralls <./projects/angular-dynaform/core/coverage/lcov.info",
"e2e:basic-example": "ng e2e basic-example-e2e",
"e2e:material-example": "ng e2e material-example-e2e",
"lint:core": "ng lint @angular-dynaform/core",
"lint:basic": "ng lint @angular-dynaform/basic",
"lint:basic-example": "ng lint basic-example",
"lint:material": "ng lint @angular-dynaform/material",
"lint:material-example": "ng lint material-example",
"lint:nativescript": "ng lint @angular-dynaform/nativescript",
"lint:nativescript-example": "cd projects/nativescript-example && npm run lint",
"docs": "compodoc projects/angular-dynaform/core",
"release:build": "make release",
"release:publish": "npm run docs && ./build/publish",
"plunker:build": "adf_plunker_build",
"plunker:publish": "adf_plunker_publish",
"plunker:basic-example": "cd dist/plunkr/basic-example && lite-server",
"plunker:material-example": "cd dist/plunkr/material-example && lite-server",
"postinstall": "./build/post-install",
"postlint": "npm run prettier-diff",
"prettier-diff-core": "prettier --list-different 'projects/angular-dynaform/core/src/**/*.{js,ts,json,html,scss}'",
"prettier-core": "prettier --write 'projects/angular-dynaform/core/src/**/*.{js,ts,json,html,scss}'",
"prettier-diff-basic": "prettier --list-different 'projects/angular-dynaform/basic/src/**/*.{js,ts,json,html,scss}'",
"prettier-basic": "prettier --write 'projects/angular-dynaform/basic/src/**/*.{js,ts,json,html,scss}'",
"prettier-diff-material": "prettier --list-different 'projects/angular-dynaform/material/src/**/*.{js,ts,json,html,scss}'",
"prettier-material": "prettier --write 'projects/angular-dynaform/material/src/**/*.{js,ts,json,html,scss}'",
"prettier-diff-nativescript": "prettier --list-different 'projects/angular-dynaform/nativescript/src/**/*.{js,ts,json,html,scss}'",
"prettier-nativescript": "prettier --write 'projects/angular-dynaform/nativescript/src/**/*.{js,ts,json,html,scss}'",
"prettier-diff-basic-example": "prettier --list-different 'projects/basic-example/src/**/*.{js,ts,json,html,scss}'",
"prettier-basic-example": "prettier --write 'projects/basic-example/src/**/*.{js,ts,json,html,scss}'",
"prettier-diff-basic-example-e2e": "prettier --list-different 'projects/basic-example-e2e/src/**/*.{js,ts,json,html,scss}'",
"prettier-basic-example-e2e": "prettier --write 'projects/basic-example-e2e/src/**/*.{js,ts,json,html,scss}'",
"prettier-diff-material-example": "prettier --list-different 'projects/material-example/src/**/*.{js,ts,json,html,scss}'",
"prettier-material-example": "prettier --write 'projects/material-example/src/**/*.{js,ts,json,html,scss}'",
"prettier-diff-material-example-e2e": "prettier --list-different 'projects/material-example-e2e/src/**/*.{js,ts,json,html,scss}'",
"prettier-material-example-e2e": "prettier --write 'projects/material-example-e2e/src/**/*.{js,ts,json,html,scss}'",
"prettier-diff-nativescript-example": "prettier --list-different 'projects/nativescript-example/app/**/*.{js,ts,json,html,scss}'",
"prettier-nativescript-example": "prettier --write 'projects/nativescript-example/app/**/*.{js,ts,json,html,scss}'",
"prettier-diff": "npm run prettier-diff-core && npm run prettier-diff-basic && npm run prettier-diff-material && npm run prettier-diff-nativescript && npm run prettier-diff-basic-example && npm run prettier-diff-basic-example-e2e && npm run prettier-diff-material-example && npm run prettier-diff-material-example-e2e && npm run prettier-diff-nativescript-example",
"prettier": "npm run prettier-core && npm run prettier-basic && npm run prettier-material && npm run prettier-nativescript && npm run prettier-basic-example && npm run prettier-basic-example-e2e && npm run prettier-material-example && npm run prettier-material-example-e2e && npm run prettier-nativescript-example"
},
"private": true,
"dependencies": {
"@angular/animations": "^8.2.14",
"@angular/cdk": "^8.2.3",
"@angular/common": "^8.2.14",
"@angular/compiler": "^8.2.14",
"@angular/core": "^8.2.14",
"@angular/forms": "^8.2.14",
"@angular/material": "^8.2.3",
"@angular/platform-browser": "^8.2.14",
"@angular/platform-browser-dynamic": "^8.2.14",
"@angular/router": "^8.2.14",
"core-js": "^3.6.4",
"hammerjs": "^2.0.8",
"jsep": "^0.3.4",
"jsonpointerx": "~1.0.28",
"nativescript-angular": "^8.20.4",
"nativescript-checkbox": "^3.0.3",
"rxjs": "^6.5.4",
"tns-core-modules": "^6.3.2",
"zone.js": "~0.10.2"
},
"devDependencies": {
"@angular-devkit/build-angular": "~0.803.23",
"@angular-devkit/build-ng-packagr": "^0.803.23",
"@angular/cli": "^8.3.23",
"@angular/compiler-cli": "^8.2.14",
"@angular/language-service": "^8.2.14",
"@compodoc/compodoc": "^1.1.11",
"@types/jasmine": "^3.5.1",
"@types/node": "^13",
"codelyzer": "^5.2.1",
"coveralls": "^3.0.9",
"jasmine": "^3.5.0",
"karma": "^4.4.1",
"karma-chrome-launcher": "^3.1.0",
"karma-coverage-istanbul-reporter": "^2.1.1",
"karma-jasmine": "^3.1.0",
"karma-jasmine-html-reporter": "^1.5.1",
"lite-server": "^2.5.4",
"ng-packagr": "^5.7.1",
"prettier": "^1.19.1",
"rimraf": "^3.0.0",
"systemjs": "<0.20",
"ts-node": "^8.6.2",
"tsickle": "^0.38.0",
"tslib": "^1.10.0",
"tslint": "<6.0.0",
"typescript": "<3.5"
}
}