forked from ghiscoding/Angular-Slickgrid
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
157 lines (157 loc) · 5.98 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
148
149
150
151
152
153
154
155
156
157
{
"name": "angular-slickgrid",
"version": "2.17.5",
"description": "Slickgrid components made available in Angular",
"keywords": [
"angular",
"plugin",
"datagrid",
"datatable",
"slickgrid"
],
"license": "MIT",
"scripts": {
"ng": "ng",
"ng:build": "ng build",
"start": "ng serve --port 4300 --open",
"prebuild": "npm-run-all delete:dist test:coverage",
"build": "npm run packagr",
"postbuild": "npm-run-all sass:build sass:copy copy:i18n copy:lib",
"build:with-e2e": "npm-run-all build cypress:ci:mochawesome",
"build:gh-demo": "npm run build",
"postbuild:gh-demo": "npm-run-all del-demo:dist copy-demo:dist",
"build:gh-demo:with-e2e": "npm run build:gh-demo",
"postbuild:gh-demo:with-e2e": "npm run cypress:ci:mochawesome",
"delete:dist": "cross-env rimraf dist",
"cypress:ci:mochawesome": "cd test/cypress && npm run cypress:ci:mochawesome",
"cypress:ci:xml": "cd test/cypress && node node_modules/cypress/bin/cypress run --reporter xunit --reporter-options output=testresult.xml",
"cypress:open": "cd test/cypress && node node_modules/cypress/bin/cypress open",
"test": "npm run test:jest",
"test:jest": "node_modules/.bin/jest --config test/jest.config.js",
"jest:clear": "node_modules/.bin/jest --clearCache",
"jest:watch": "node_modules/.bin/jest --config test/jest.config.js --watch",
"test:coverage": "node_modules/.bin/jest --config test/jest.config.js --runInBand --coverage",
"test:snapshot": "node_modules/.bin/jest --config test/jest.config.js --coverage -u",
"test:watch": "npm-run-all jest:watch",
"copy:i18n": "cross-env copyfiles -f src/assets/i18n/*.json dist/i18n",
"copy:lib": "cross-env copyfiles --up 2 src/assets/lib/** dist",
"copy-demo:dist": "cross-env copyfiles --up 1 dist/**/*.* ../angular-slickgrid-demos/bootstrap3-demo-with-translate/node_modules/angular-slickgrid",
"del-demo:dist": "cross-env rimraf ../angular-slickgrid-demos/bootstrap3-demo-with-translate/node_modules/angular-slickgrid",
"pack-lib": "npm pack ./dist",
"packagr": "ng-packagr -p package.json",
"changelog": "cross-env conventional-changelog -p angular -i doc/CHANGELOG.md -s",
"bump-version": "npm --no-git-tag-version version",
"prepare-release": "cross-env npm run changelog && npm run build && npm run doc",
"release": "standard-version",
"sass-build-task:scss-compile": "node-sass --source-map true src/app/modules/angular-slickgrid/styles/ -o dist/styles/css",
"sass-build-task:autoprefixer": "postcss dist/styles/css/*.css --use autoprefixer -d dist/styles/css",
"sass:build": "npm-run-all -p sass-build-task:*",
"sass:copy": "cross-env copyfiles -f src/app/modules/angular-slickgrid/styles/*.scss dist/styles/sass",
"sass:watch": "node-sass 'src/app/modules/angular-slickgrid/styles/**/*.scss' -c 'npm run sass:build'"
},
"author": "Ghislain B.",
"repository": {
"type": "git",
"url": "http://github.com/ghiscoding/angular-slickgrid"
},
"main": "src/app/modules/angular-slickgrid/index",
"private": false,
"ngPackage": {
"$schema": "./node_modules/ng-packagr/ng-package.schema.json",
"whitelistedNonPeerDependencies": [
"."
],
"dest": "dist",
"workingDirectory": ".ng_build",
"lib": {
"entryFile": "src/public_api.ts",
"umdModuleIds": {
"@ngx-translate/core": "ngx-translate-core",
"@ngx-translate/core/index": "ngx-translate-core",
"dompurify": "dompurify",
"excel-builder-webpacker": "excelBuilderWebpacker",
"flatpickr": "flatpickr",
"jquery": "jquery",
"lodash.isequal": "lodash.isequal",
"moment-mini": "moment",
"text-encoding-utf-8": "textEncodingUtf8"
}
}
},
"dependencies": {
"@ngx-translate/core": "^11.0.1",
"@ngx-translate/http-loader": "^4.0.0",
"core-js": "^2.6.1",
"dompurify": "^2.0.7",
"excel-builder-webpacker": "^1.0.4",
"flatpickr": ">=4.5.0",
"font-awesome": "^4.7.0",
"jquery": "^3.4.1",
"jquery-ui-dist": "^1.12.1",
"lodash.isequal": "^4.5.0",
"moment-mini": "^2.22.1",
"rxjs": "^6.3.3",
"slickgrid": "^2.4.18",
"text-encoding-utf-8": "^1.0.2",
"tslib": "^1.10.0",
"vinyl-paths": "^2.1.0"
},
"devDependencies": {
"@angular-builders/jest": "^7.4.2",
"@angular-devkit/build-angular": "~0.13.1",
"@angular/animations": "^7.2.15",
"@angular/cli": "^7.3.1",
"@angular/common": "^7.2.15",
"@angular/compiler": "7.2.15",
"@angular/compiler-cli": "7.2.15",
"@angular/core": "^7.2.15",
"@angular/forms": "^7.2.15",
"@angular/http": "^7.2.15",
"@angular/language-service": "^7.2.15",
"@angular/platform-browser": "^7.2.15",
"@angular/platform-browser-dynamic": "^7.2.15",
"@angular/router": "^7.2.15",
"@ng-select/ng-select": "^2.15.3",
"@types/dompurify": "^2.0.1",
"@types/flatpickr": "^3.1.2",
"@types/jest": "^24.0.25",
"@types/jquery": "^3.3.31",
"@types/moment": "^2.13.0",
"@types/node": "^13.1.4",
"@types/text-encoding-utf-8": "^1.0.1",
"babel-jest": "^24.9.0",
"bootstrap": "3.4.1",
"codecov": "^3.6.1",
"codelyzer": "~4.5.0",
"conventional-changelog": "^3.1.18",
"copyfiles": "^2.1.1",
"cross-env": "^6.0.3",
"custom-event-polyfill": "^1.0.7",
"del": "^5.1.0",
"del-cli": "^3.0.0",
"gulp": "^4.0.2",
"gulp-bump": "^3.1.3",
"gulp-sass": "^4.0.2",
"gulp-yuidoc": "^0.1.2",
"jest": "^24.9.0",
"jest-extended": "^0.11.2",
"jest-junit": "^6.4.0",
"jest-preset-angular": "^6.0.1",
"ng-packagr": "~5.3.0",
"ngx-bootstrap": "^4.3.0",
"node-sass": "^4.13.0",
"npm-run-all": "^4.1.5",
"postcss-cli": "^6.1.3",
"require-dir": "^1.2.0",
"rimraf": "^3.0.0",
"run-sequence": "^2.2.1",
"standard-version": "^6.0.1",
"ts-node": "~3.3.0",
"tsickle": "^0.34.0",
"tslint": "^5.12.0",
"typescript": ">=3.1.1 <3.2.0",
"uglify-js": "^3.4.9",
"yargs": "^12.0.5",
"zone.js": "^0.8.29"
}
}