forked from siemens/ngx-datatable
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
79 lines (79 loc) · 3.2 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
{
"name": "ngx-datatable",
"version": "0.0.0",
"scripts": {
"ng": "ng",
"start": "ng serve",
"build": "ng build",
"build:lib:prod": "ng build ngx-datatable-lib --configuration production",
"copy-files": "cp README.md dist/ngx-datatable/README.md && cp LICENSE dist/ngx-datatable/LICENSE && cpx \"src/assets/**/*\" \"dist/ngx-datatable/assets\" && cpx \"projects/ngx-datatable/src/lib/themes/**/*\" \"dist/ngx-datatable/themes\"",
"build:css": "scss-bundle -c ./scss-bundle.config.json && node-sass -o dist/ngx-datatable/themes dist/ngx-datatable/themes && node-sass -o dist/ngx-datatable dist/ngx-datatable",
"test": "run-p lint test:unit",
"test:unit": "ng test ngx-datatable-lib --watch=false",
"test:watch": "ng test ngx-datatable-lib",
"test:ci": "ng test ngx-datatable-lib --watch=false --progress=false --browsers=ChromeHeadlessCI",
"ci": "run-s lint test:ci",
"lint": "ng lint",
"e2e": "ng e2e",
"build-docs": "cross-env NODE_ENV=production ng build --configuration production --base-href=\"/ngx-datatable/\"",
"predeploy-docs": "npm run build-docs",
"deploy-docs": "angular-cli-ghpages --dir ./dist/ngx-datatable",
"package": "run-s build:lib:prod copy-files build:css",
"prepublish:lib": "run-s ci package",
"publish:lib": "npm publish ./dist/ngx-datatable",
"prepack": "npm run package",
"pack": "npm pack ./dist/ngx-datatable/",
"publish": "run-s publish:lib deploy-docs",
"prepublishOnly": "echo \"This is the workspace -- you probably meant run 'npm run publish'.\" && exit 1"
},
"private": true,
"dependencies": {
"@angular/animations": "~15.2.9",
"@angular/common": "~15.2.9",
"@angular/compiler": "~15.2.9",
"@angular/core": "~15.2.9",
"@angular/forms": "~15.2.9",
"@angular/platform-browser": "~15.2.9",
"@angular/platform-browser-dynamic": "~15.2.9",
"@angular/router": "~15.2.9",
"eslint-plugin-jsdoc": "^46.9.0",
"eslint-plugin-prefer-arrow": "^1.2.3",
"rxjs": "~7.4.0",
"tslib": "^2.3.0",
"zone.js": "~0.11.4"
},
"devDependencies": {
"@angular-devkit/build-angular": "^15.2.9",
"@angular-eslint/builder": "15.2.1",
"@angular-eslint/eslint-plugin": "15.2.1",
"@angular-eslint/eslint-plugin-template": "15.2.1",
"@angular-eslint/schematics": "15.2.1",
"@angular-eslint/template-parser": "15.2.1",
"@angular/cli": "^15.2.9",
"@angular/compiler-cli": "^15.2.9",
"@angular/language-service": "^15.2.9",
"@types/jasmine": "~3.10.0",
"@types/jasminewd2": "^2.0.13",
"@types/node": "^20.10.4",
"@typescript-eslint/eslint-plugin": "^6.10.0",
"@typescript-eslint/parser": "^6.10.0",
"angular-cli-ghpages": "^0.6.0",
"cpx": "^1.5.0",
"cross-env": "^7.0.2",
"eslint": "^8.53.0",
"jasmine": "^3.5.0",
"jasmine-core": "~3.10.1",
"jasmine-spec-reporter": "~7.0.0",
"karma": "~6.3.4",
"karma-chrome-launcher": "~3.1.0",
"karma-coverage-istanbul-reporter": "~3.0.2",
"karma-jasmine": "~4.0.0",
"karma-jasmine-html-reporter": "^1.5.0",
"ng-packagr": "^15.2.2",
"npm-run-all": "^4.1.5",
"protractor": "~7.0.0",
"scss-bundle": "^3.1.1",
"ts-node": "~9.1.1",
"typescript": "~4.8.4"
}
}