-
Notifications
You must be signed in to change notification settings - Fork 23
/
package.json
152 lines (152 loc) · 6.49 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
{
"name": "ornamentum-demo",
"version": "8.1.4",
"description": "Ornamentum data table is a lightweight, feature rich, highly configurable, UI framework agnostic, fully responsive, reactive Angular data table with no external dependencies.",
"scripts": {
"ng": "ng",
"test:demo": "ng test ornamentum-demo --watch=true",
"test:demo:ci": "ng test ornamentum-demo --watch=false --browsers ChromeHeadless",
"test:demo:coverage": "ng test ornamentum-demo --watch=true --code-coverage=true",
"test:demo:coverage:ci": "ng test ornamentum-demo --watch=false --code-coverage=true --browsers ChromeHeadless",
"e2e:demo": "ng e2e ornamentum-demo",
"lint:demo:ts": "ng lint ornamentum-demo",
"lint:demo:scss": "sass-lint --config src/.scss-lint.yml --no-exit --verbose",
"lint:demo": "npm run lint:demo:ts && npm run lint:demo:scss",
"start:demo": "ng serve ornamentum-demo --open --port 4201 --host=0.0.0.0",
"build:demo:dev": "ng build ornamentum-demo --stats-json",
"build:demo:prod": "ng build ornamentum-demo --prod",
"build:demo:server:bundle": "ng run ornamentum-demo:server",
"build:demo:server": "webpack --config webpack.server.config.js --progress --colors",
"build:demo:copy:data": "cpx src/data.json dist/ornamentum-demo/server",
"explorer:demo:bundle": "webpack-bundle-analyzer dist/ornamentum-demo/browser/stats.json",
"test:lib": "ng test ornamentum --watch=true",
"test:lib:ci": "ng test ornamentum --watch=false",
"test:lib:coverage": "ng test ornamentum --watch=true --code-coverage=true",
"test:lib:coverage:ci": "ng test ornamentum --watch=false --code-coverage=true",
"e2e:lib": "ng e2e ornamentum",
"lint:lib:ts": "ng lint ornamentum",
"lint:lib:scss": "sass-lint --config projects/ornamentum/.scss-lint.yml --no-exit --verbose",
"lint:lib": "npm run lint:lib:ts && npm run lint:lib:scss",
"build:lib:scss": "node-sass projects/ornamentum/src/styles/themes/ -o dist/ornamentum/prebuilt-themes/ --importer ./node_modules/node-sass-tilde-importer --source-map true --source-map-contents true",
"build:lib:scss:copy": "cpx \"./projects/ornamentum/src/styles/**/*\" \"./dist/ornamentum\"",
"build:lib:dev": "ng build ornamentum && npm run build:lib:scss && npm run build:lib:scss:copy",
"build:lib:prod": "ng build ornamentum --prod && npm run build:lib:scss && npm run build:lib:scss:copy",
"docs:lib": "compodoc -p projects/ornamentum/tsconfig.doc.json -d dist/ornamentum-demo/browser/api-docs -n 'Ornamentum' --customFavicon 'src/assets/favicon/favicon.ico' --assetsFolder 'src/assets/docs' --disableCoverage --disablePrivate --disableInternal --disableProtected",
"clean:dist": "rimraf dist",
"lint": "npm run lint:demo && npm run lint:lib",
"start": "npm run clean:dist && npm run build:lib:dev && npm run start:demo",
"start:ssr": "npm run build && DIST_FOLDER=dist/ornamentum-demo node dist/ornamentum-demo/server.js",
"build": "npm run clean:dist && npm run build:lib:prod && npm run docs:lib && npm run build:demo:prod && npm run build:demo:server:bundle && npm run build:demo:server && npm run build:demo:copy:data",
"explorer": "npm run clean:dist && npm run build:lib:dev && npm run build:demo:dev && npm run explorer:demo:bundle",
"version": "node version.js && npm run build && git add src/environments/version.ts projects/ornamentum/package.json",
"postversion": "git push && git push --tags",
"prerelease": "npm run build && cp README.md dist/ornamentum",
"release": "npm publish dist/ornamentum",
"pretty": "prettier --write \"**/*.{js,ts,scss,json,html}\""
},
"repository": {
"type": "git",
"url": "https://github.com/yohangz/ornamentum.git"
},
"keywords": [
"Angular",
"Grid",
"Data Table",
"Dropdown List",
"Multi Select Dropdown",
"Angular 7+",
"UI Grid",
"NG Grid",
"NGX Grid"
],
"contributors": [
{
"name": "Yohan Gomez",
"email": "[email protected]",
"url": "https://github.com/yohangz"
},
{
"name": "Lahiru Jayamanna",
"email": "[email protected]",
"url": "https://github.com/lahiruz"
},
{
"name": "Samuditha Wadigamangawa",
"email": "[email protected]",
"url": "https://github.com/samudithaw"
},
{
"name": "Aravinda Rathnayake",
"email": "[email protected]",
"url": "https://github.com/aravindarr"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/yohangz/ornamentum/issues"
},
"homepage": "https://ornamentum.app",
"dependencies": {
"@angular/animations": "^8.1.0",
"@angular/common": "^8.1.0",
"@angular/compiler": "^8.1.0",
"@angular/core": "^8.1.0",
"@angular/forms": "^8.1.0",
"@angular/platform-browser": "^8.1.0",
"@angular/platform-browser-dynamic": "^8.1.0",
"@angular/platform-server": "^8.1.0",
"@angular/pwa": "^0.801.0",
"@angular/router": "^8.1.0",
"@angular/service-worker": "^8.1.0",
"@nguniversal/common": "^8.1.0",
"@nguniversal/express-engine": "^8.1.0",
"@nguniversal/module-map-ngfactory-loader": "^8.1.0",
"bootstrap": "^4.3.0",
"code-prettify": "^0.1.0",
"color-themes-for-google-code-prettify": "^2.0.4",
"express": "^4.16.4",
"lodash": "^4.17.11",
"rxjs": "^6.5.2",
"tslib": "^1.9.3",
"zone.js": "~0.9.1"
},
"devDependencies": {
"@angular-devkit/build-angular": "^0.801.0",
"@angular-devkit/build-ng-packagr": "^0.801.0",
"@angular/cli": "^8.1.0",
"@angular/compiler-cli": "^8.1.0",
"@angular/language-service": "^8.1.0",
"@compodoc/compodoc": "^1.1.8",
"@types/express": "^4.16.1",
"@types/jasmine": "~3.3.8",
"@types/jasminewd2": "~2.0.6",
"@types/lodash": "^4.14.135",
"@types/node": "^12.0.12",
"@types/ws": "^6.0.1",
"codelyzer": "^5.0.0",
"cpx": "^1.5.0",
"fs-extra": "^8.1.0",
"jasmine-core": "~3.4.0",
"jasmine-spec-reporter": "~4.2.1",
"karma": "~4.1.0",
"karma-chrome-launcher": "~2.2.0",
"karma-coverage-istanbul-reporter": "~2.0.1",
"karma-jasmine": "~2.0.1",
"karma-jasmine-html-reporter": "^1.4.0",
"ng-packagr": "^5.3.0",
"node-sass": "^4.12.0",
"node-sass-tilde-importer": "^1.0.2",
"prettier": "^1.16.4",
"protractor": "^5.4.2",
"rimraf": "^2.6.3",
"sass-lint": "^1.12.1",
"ts-loader": "^6.0.4",
"ts-node": "^8.3.0",
"tsickle": "^0.35.0",
"tslint": "^5.18.0",
"typescript": "3.4.3",
"webpack-bundle-analyzer": "^3.0.3",
"webpack-cli": "^3.3.5",
"ws": "^7.0.1"
}
}