forked from Teradata/covalent
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
147 lines (147 loc) · 6.47 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
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
{
"name": "covalent",
"version": "4.0.0-alpha.0",
"private": true,
"description": "Teradata UI Platform built on Angular Material",
"keywords": [
"angular",
"components",
"reusable",
"schematics"
],
"scripts": {
"webdriver-update": "bash ./node_modules/.bin/webdriver-manager update",
"lint": "npm run tslint && npm run stylelint",
"tslint": "./node_modules/.bin/tslint -p ./tsconfig.json --format codeFrame -c ./tslint.json './src/**/*.ts'",
"stylelint": "./node_modules/.bin/stylelint 'src/**/*.scss' --config stylelint.config.js --syntax scss",
"postinstall": "npm rebuild node-sass && ngcc && npm install ./src/platform/coding-standards --no-save",
"test": "ng test covalent-docs --code-coverage --source-map=false --watch=false && npm run test:schematics",
"test:watch": "ng test --code-coverage --source-map=false --watch=true",
"test:schematics": "tsc -p src/platform/core/schematics/tsconfig.spec.json && jasmine src/platform/core/schematics/**/*.spec.js",
"coverage:win": "start chrome ./coverage/index.html",
"coverage:mac": "open -a \"Google Chrome\" coverage/index.html",
"coveralls": "cat ./coverage/lcov.info | node ./node_modules/coveralls/bin/coveralls.js",
"serve": "node --max_old_space_size=5048 ./node_modules/@angular/cli/bin/ng serve",
"serve:experimental": "node --max_old_space_size=5048 ./node_modules/@angular/cli/bin/ng serve --port 5000 covalent-test-bed",
"serve:prod": "node --max_old_space_size=5048 ./node_modules/@angular/cli/bin/ng serve --aot --prod --source-map=false --optimization",
"build:docs": "node --max_old_space_size=5048 ./node_modules/@angular/cli/bin/ng build --prod --source-map=false --optimization",
"build:lib": "bash scripts/build-release && gulp version-placeholder",
"build:universal": "bash scripts/build-universal",
"publish:npm": "npm run build:lib && bash scripts/npm-publish",
"publish:nightly": "npm run build:lib && bash scripts/nightly-publish core && bash scripts/nightly-publish coding-standards && bash scripts/nightly-publish code-editor && bash scripts/nightly-publish text-editor && bash scripts/nightly-publish echarts && bash scripts/nightly-publish markdown-navigator && bash scripts/nightly-publish experimental && bash scripts/nightly-publish guided-tour && bash scripts/nightly-publish highlight && bash scripts/nightly-publish flavored-markdown",
"ghpages:deploy": "VERSION=$(echo v${npm_package_version} | cut -c1-2) && npm run build:docs -- --base-href /covalent/$VERSION/ && bash scripts/ghpages-deploy $VERSION",
"release:start": "bash scripts/start-release",
"release:finish": "bash scripts/finish-release",
"bundle-report": "npm run build:docs -- --stats-json && webpack-bundle-analyzer dist/stats.json",
"generate:changelog": "./node_modules/.bin/conventional-changelog -i docs/CHANGELOG.md -s -p angular",
"a11y": "scripts/a11y/a11y.sh -r scripts/a11y/routes.txt",
"prettier": "./node_modules/.bin/prettier --write './**/*.{ts,js,json,css,scss,yml,html,md}'",
"prettier:check": "./node_modules/.bin/prettier --check './**/*.{ts,js,json,css,scss,yml,html,md}'",
"commitlint": "node ./node_modules/@commitlint/travis-cli/lib/cli.js"
},
"engines": {
"node": ">=10.15.3",
"npm": ">=6",
"yarn": ">=1.12.1"
},
"repository": {
"type": "git",
"url": "https://github.com/teradata/covalent.git"
},
"bugs": {
"url": "https://github.com/teradata/covalent/issues"
},
"license": "MIT",
"author": "Teradata UX",
"contributors": [
"Kyle Ledbetter <[email protected]>",
"Richa Vyas <[email protected]>",
"Ed Morales <[email protected]>",
"Jason Weaver <[email protected]>",
"Jeremy Wilken <[email protected]>",
"Jeremy Smartt <[email protected]>",
"Ilsun Park <[email protected]>",
"Steven Ov <[email protected]>",
"Christian Memije <[email protected]>",
"Phillip Dominguez <[email protected]>"
],
"dependencies": {
"@angular/animations": "^11.0.4",
"@angular/cdk": "^11.0.3",
"@angular/common": "^11.0.4",
"@angular/compiler": "^11.0.4",
"@angular/core": "^11.0.4",
"@angular/forms": "^11.0.4",
"@angular/material": "^11.0.3",
"@angular/platform-browser": "^11.0.4",
"@angular/platform-browser-dynamic": "^11.0.4",
"@angular/platform-server": "^11.0.4",
"@angular/router": "^11.0.4",
"@ngx-translate/core": "13.0.0",
"@ngx-translate/http-loader": "6.0.0",
"classlist.js": "^1.1.20150312",
"core-js": "^2.5.4",
"easymde": "2.8.0",
"echarts": "4.2.1",
"echarts-wordcloud": "^1.1.3",
"hammerjs": "^2.0.8",
"highlight.js": "10.4.1",
"monaco-editor": "^0.22.0",
"rxjs": "^6.5.4",
"shepherd.js": "^7.1.0",
"showdown": "^1.9.1",
"web-animations-js": "2.3.2",
"zone.js": "^0.10.2"
},
"devDependencies": {
"@angular-builders/custom-webpack": "^8.4.1",
"@angular-devkit/build-angular": "^0.1100.4",
"@angular-devkit/build-ng-packagr": "^0.1002.0",
"@angular-devkit/core": "^11.0.4",
"@angular-devkit/schematics": "^11.0.4",
"@angular/cli": "^11.0.4",
"@angular/compiler-cli": "^11.0.4",
"@schematics/angular": "^11.0.4",
"@types/codemirror": "0.0.80",
"@types/fs-extra": "^4.0.0",
"@types/hammerjs": "^2.0.30",
"@types/jasmine": "~2.8.6",
"@types/jasminewd2": "~2.0.3",
"@types/node": "^12.7.2",
"@types/selenium-webdriver": "^2.52.0",
"autoprefixer": "9.6.5",
"conventional-changelog-cli": "^2.1.1",
"coveralls": "^3.0.3",
"css-loader": "3.4.2",
"file-loader": "5.0.2",
"fs-extra": "^4.0.0",
"glob": "^6.0.4",
"gulp": "4.0.2",
"gulp-bump": "3.1.3",
"gulp-hub": "4.2.0",
"gulp-postcss": "8.0.0",
"gulp-sass": "4.0.2",
"gulp-sourcemaps": "2.6.5",
"jasmine-core": "~3.5.0",
"jasmine-spec-reporter": "~5.0.0",
"karma": "~5.1.1",
"karma-chrome-launcher": "~3.1.0",
"karma-cli": "~2.0.0",
"karma-coverage-istanbul-reporter": "~3.0.2",
"karma-jasmine": "~4.0.0",
"karma-jasmine-html-reporter": "^1.5.0",
"monaco-editor-webpack-plugin": "^3.0.0",
"ng-packagr": "^11.0.3",
"node-sass": "^4.14.1",
"pa11y": "^5.1.0",
"protractor": "~7.0.0",
"require-dir": "0.3.2",
"semver": "5.2.0",
"style-loader": "1.1.3",
"ts-node": "~7.0.0",
"tsickle": "0.39.1",
"typescript": "~4.0.2",
"webpack-bundle-analyzer": "^3.3.2",
"webpack-stats-plugin": "^0.3.0"
}
}