forked from swimlane/ngx-ui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
99 lines (99 loc) · 3.5 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
{
"name": "ngx-ui",
"version": "0.0.0",
"scripts": {
"ng": "ng",
"start": "ng serve",
"build": "npm run build:lib && ng build --prod",
"build:demo": "npm run build:lib && cross-env NODE_ENV=production ng build --prod --base-href=\"/ngx-ui/\"",
"build:lib": "ng build @swimlane/ngx-ui && node scripts/prep-global-styles.js",
"package": "npm run build:lib",
"test:unit": "ng test @swimlane/ngx-ui",
"test:watch": "ng test @swimlane/ngx-ui --watch",
"test:ci": "ng test @swimlane/ngx-ui --watch=false --progress=false --browsers=ChromeHeadlessCI",
"test": "concurrently \"npm run lint\" \"npm run test:unit\" \"npm run cypress:run\"",
"ci": "concurrently \"npm run lint\" \"npm run test:ci\" \"npm run cypress:ci\"",
"cypress:run": "cypress run",
"cypress:open": "cypress open",
"cypress:ci": "start-server-and-test start http-get://localhost:4200 cypress:run",
"lint": "ng lint",
"e2e": "ng e2e",
"predeploy": "npm run build:demo",
"deploy": "angular-cli-ghpages --dir ./dist/ngx-ui --name=Swimlane [email protected]",
"prepublish:lib": "npm run package",
"publish:lib": "npm publish ./dist/swimlane/ngx-ui",
"prepack": "npm run package",
"pack": "npm pack ./dist/swimlane/ngx-ui",
"prettier": "prettier --write \"**/*.{js,ts,html,scss,css,md,json}\""
},
"private": true,
"dependencies": {
"@angular/animations": "~8.0.0",
"@angular/cdk": "^8.0.0",
"@angular/common": "~8.0.0",
"@angular/compiler": "~8.0.0",
"@angular/core": "~8.0.0",
"@angular/flex-layout": "8.0.0-beta.26",
"@angular/forms": "~8.0.0",
"@angular/platform-browser": "~8.0.0",
"@angular/router": "~8.0.0",
"@swimlane/ngx-datatable": "^15.0.0",
"ajv": "^6.5.5",
"d3-color": "^1.2.3",
"moment-timezone": "^0.5.23",
"mousetrap": "^1.6.2",
"ng2-file-upload": "^1.3.0",
"normalize.css": "^8.0.0",
"rxjs": "~6.5.2"
},
"devDependencies": {
"@angular-devkit/build-angular": "~0.800.0",
"@angular-devkit/build-ng-packagr": "~0.800.0",
"@angular/cli": "~8.0.0",
"@angular/compiler-cli": "^8.0.0",
"@angular/language-service": "~8.0.0",
"@angular/platform-browser-dynamic": "^8.0.0",
"@netbasal/spectator": "^3.9.1",
"@swimlane/prettier-config-swimlane": "^0.1.1",
"@types/jasmine": "~2.8.8",
"@types/jasminewd2": "~2.0.3",
"@types/json-schema": "^7.0.3",
"@types/moment-timezone": "^0.5.10",
"@types/node": "~8.9.4",
"angular-cli-ghpages": "^0.5.3",
"autoprefixer": "^9.3.1",
"clean-css": "^4.2.1",
"codelyzer": "^5.0.1",
"codemirror": "5.42.0",
"concurrently": "^4.1.0",
"core-js": "^2.6.9",
"cpx": "^1.5.0",
"cross-env": "^5.2.0",
"cypress": "^3.1.5",
"gh-pages": "^1.0.0",
"jasmine-core": "~2.99.1",
"jasmine-spec-reporter": "~4.2.1",
"karma": "~3.0.0",
"karma-chrome-launcher": "~2.2.0",
"karma-coverage-istanbul-reporter": "~2.0.1",
"karma-jasmine": "~1.1.2",
"karma-jasmine-html-reporter": "^0.2.2",
"moment": "^2.22.2",
"ng-packagr": "^5.2.0",
"ngx-moment": "^3.1.0",
"node-sass": "^4.9.4",
"postcss": "^7.0.5",
"postcss-url": "^8.0.0",
"prettier": "^1.16.4",
"start-server-and-test": "^1.7.7",
"ts-node": "~7.0.0",
"tsickle": ">=0.29.0",
"tslib": "^1.9.0",
"tslint": "~5.11.0",
"tslint-config-prettier": "^1.15.0",
"tslint-config-security": "^1.16.0",
"tslint-config-swimlane": "^3.0.4",
"typescript": "~3.4.0",
"zone.js": "~0.9.1"
}
}