forked from SAP/fundamental-ngx
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
128 lines (128 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
{
"name": "fundamental-ngx",
"version": "0.13.0-rc.144",
"license": "Apache-2.0",
"main": "dist/libs/core/index.js",
"description": "SAP Fundamental Styles, implemented in Angular",
"scripts": {
"build": "ng build",
"build-all": "ng build core && ng build platform && ng build docs && npm run build-docs",
"build-docs": "npm run compile-typedoc-all && npm run copy-docs && ng build --prod --base-href=\"/fundamental-ngx/\" ",
"build-docs-netlify": "npm run build-all && npm run compile-typedoc-all && npm run copy-docs && ng build --prod --base-href=\"/\" ",
"build-deploy-library": "ng build core && ng build platform && npm run build:schematics && npm run sync-versions && cp README.md dist/libs/core/README.md && cp PLATFORM_README.md dist/libs/platform/PLATFORM_README.md",
"build-pack-library": "ng build core && ng build platform && npm run build:schematics && npm run sync-versions && cd dist/libs/core/ && npm pack && cd ../platform && npm pack && cd ../..",
"copy-docs": "cp README.md apps/docs/src/assets/README.md && cp NEW_COMPONENT.md apps/docs/src/assets/NEW_COMPONENT.md && cp NEW_PLATFORM_COMPONENT.md apps/docs/src/assets/NEW_PLATFORM_COMPONENT.md && npm run copy-app-docs",
"copy-app-docs": "cp libs/core/README.md apps/docs/src/assets/CORE_README.md && cp PLATFORM_README.md apps/docs/src/assets/PLATFORM_README.md",
"deploy-docs": "angular-cli-ghpages -d dist/apps/docs --branch gh-pages",
"sync-versions": "./ci-scripts/sync-version.sh",
"e2e": "ng e2e",
"hmr": "ng serve --hmr -e=hmr",
"lint": "ng lint docs && ng lint core && ng lint platform",
"lint:pre-commit": "printf \"running pre-commit lint...\" && npm run lint && printf \"done!\n\"",
"ng": "ng",
"release": "./scripts/publish-release.sh",
"release:create": "create-release",
"start": "npm run build-docs && ng serve",
"test": "ng test core --watch false --code-coverage true --browsers=ChromeHeadless",
"active-test": "ng test core --watch true --browsers=ChromeHeadless",
"test:coveralls": "cat ./coverage/libs/core/lcov.info | ./node_modules/coveralls/bin/coveralls.js || echo -e \"Coveralls failed.\"",
"compile-typedoc-all": "npm run compile-typedoc-core && npm run compile-typedoc-platform",
"compile-typedoc-core": "rm -rf apps/docs/src/assets/typedoc/core && typedoc --out apps/docs/src/assets/typedoc/core libs/core/src/lib --module commonjs --mode file --exclude **/*.spec.ts --hideGenerator --excludePrivate --theme apps/docs/src/fd-typedoc",
"compile-typedoc-platform": "rm -rf apps/docs/src/assets/typedoc/platform && typedoc --out apps/docs/src/assets/typedoc/platform libs/platform/src/lib --module commonjs --mode file --exclude **/*.spec.ts --hideGenerator --excludePrivate --theme apps/docs/src/fd-typedoc",
"compile-typedoc-json": "typedoc --json apps/docs/src/assets/typedoc/typedoc.json --module commonjs --mode file --exclude **/*.spec.ts --hideGenerator --excludePrivate --theme apps/docs/src/fd-typedoc libs/core/src/lib",
"build:schematics": "./node_modules/.bin/tsc -p libs/core/tsconfig.schematics.json && npm run copy:schemas && npm run copy:collection",
"copy:schemas": "cp libs/core/schematics/ng-add/schema.json dist/libs/core/schematics/ng-add/schema.json",
"copy:collection": "cp libs/core/schematics/collection.json dist/libs/core/schematics/collection.json",
"affected:apps": "./node_modules/.bin/nx affected:apps",
"affected:libs": "./node_modules/.bin/nx affected:libs",
"affected:build": "./node_modules/.bin/nx affected:build",
"affected:e2e": "./node_modules/.bin/nx affected:e2e",
"affected:test": "./node_modules/.bin/nx affected:test",
"affected:lint": "./node_modules/.bin/nx affected:lint",
"affected:dep-graph": "./node_modules/.bin/nx affected:dep-graph",
"affected": "./node_modules/.bin/nx affected",
"format": "./node_modules/.bin/nx format:write",
"format:write": "./node_modules/.bin/nx format:write",
"format:check": "./node_modules/.bin/nx format:check",
"update": "ng update @nrwl/schematics",
"update:check": "ng update",
"dep-graph": "./node_modules/.bin/nx dep-graph",
"workspace-schematic": "./node_modules/.bin/nx workspace-schematic",
"help": "./node_modules/.bin/nx help",
"std-version": "standard-version --infile ./CHANGELOG.md -m \"chore(release): version %s build ${TRAVIS_BUILD_NUMBER} [ci skip]\""
},
"publishConfig": {
"registry": "https://repository.hybris.com/api/npm/npm-repository/"
},
"dependencies": {
"@angular/animations": "^8.2.7",
"@angular/cdk": "^8.2.3",
"@angular/common": "^8.2.7",
"@angular/compiler": "^8.2.7",
"@angular/core": "^8.2.7",
"@angular/forms": "^8.2.7",
"@angular/platform-browser": "^8.2.7",
"@angular/platform-browser-dynamic": "^8.2.7",
"@angular/router": "^8.2.7",
"@nrwl/nx": "7.8.7",
"@types/node": "^13.1.7",
"@stackblitz/sdk": "1.3.0",
"core-js": "^2.6.9",
"focus-trap": "^5.1.0",
"fundamental-styles": "^0.4.0",
"jasminewd2": "^2.0.6",
"highlight.js": "^9.17.1",
"moment": "^2.24.0",
"ngx-markdown": "^8.2.1",
"npm": "^6.13.6",
"popper.js": "^1.16.0",
"rxjs": "^6.5.4",
"zone.js": "^0.9.1"
},
"devDependencies": {
"@angular-devkit/build-angular": "^0.803.23",
"@angular-devkit/build-ng-packagr": "^0.803.23",
"@angular-devkit/core": "^7.3.9",
"@angular/cli": "^8.3.23",
"@angular/compiler-cli": "^8.2.7",
"@angular/language-service": "^8.2.14",
"@angularclass/hmr": "^2.1.3",
"@nrwl/schematics": "7.8.7",
"@schematics/angular": "^7.3.9",
"@types/jasmine": "3.5.0",
"@types/jasminewd2": "2.0.8",
"angular-cli-ghpages": "^0.5.3",
"chalk": "^2.4.2",
"codelyzer": "^5.2.1",
"coveralls": "^3.0.9",
"fs-extra": "^8.1.0",
"github-assistant": "^0.3.0",
"jasmine-core": "~3.5.0",
"jasmine-marbles": "0.4.0",
"jasmine-spec-reporter": "~4.2.1",
"karma": "^4.4.1",
"karma-chrome-launcher": "^3.1.0",
"karma-cli": "^2.0.0",
"karma-coverage-istanbul-reporter": "^2.1.1",
"karma-jasmine": "^3.1.0",
"karma-jasmine-html-reporter": "^1.5.1",
"ng-packagr": "^5.7.1",
"pre-commit": "^1.2.2",
"prettier": "^1.19.1",
"protractor": "^5.4.2",
"standard-version": "4.4.0",
"ts-node": "^8.6.2",
"tsickle": "^0.38.0",
"tslib": "^1.10.0",
"tslint": "^5.20.1",
"typedoc": "^0.16.7",
"typescript": "3.5.3"
},
"pre-commit": {
"color": true,
"run": [
"lint:pre-commit"
],
"silent": false
}
}