forked from akveo/ng2-smart-table
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
104 lines (104 loc) · 3.29 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
{
"name": "ng2-smart-table-demo",
"version": "1.4.0",
"description": "Angular Smart Table",
"author": "Akveo <[email protected]>",
"homepage": "http://akveo.github.io/ng2-smart-table/",
"repository": {
"type": "git",
"url": "https://github.com/akveo/ng2-smart-table.git"
},
"bugs": {
"url": "https://github.com/akveo/ng2-smart-table/issues"
},
"license": "MIT",
"scripts": {
"ng": "ng",
"ngh": "ngh",
"rimraf": "rimraf",
"ngc": "node_modules/.bin/ngc",
"start": "ng serve",
"start:aot": "ng serve --aot",
"build": "npm run clean:dist && ng build",
"build:prod": "npm run build -- --prod",
"build:prod:aot": "npm run build:prod -- --aot",
"build:ci": "npm run build:prod && npm run build:prod:aot && npm run build:release",
"build:ghpages": "npm run build:prod:aot -- --base-href \"https://akveo.github.io/ng2-smart-table/\" && ngh",
"build:release": "npm run clean:dist && gulp build:release",
"test": "ng test",
"test:coverage": "rimraf coverage && npm run test -- --code-coverage",
"lint": "ng lint",
"lint:styles": "stylelint ./src/framework/**/*.scss",
"lint:ci": "npm run lint && npm run lint:styles",
"pree2e": "webdriver-manager update --standalone false --gecko false",
"e2e": "ng e2e",
"clean:dist": "npm run rimraf -- dist",
"changelog": "standard-changelog"
},
"dependencies": {
"@angular/animations": "6.0.2",
"@angular/common": "6.0.2",
"@angular/compiler": "6.0.2",
"@angular/core": "6.0.2",
"@angular/forms": "6.0.2",
"@angular/http": "6.0.2",
"@angular/platform-browser": "6.0.2",
"@angular/platform-browser-dynamic": "6.0.2",
"@angular/platform-server": "6.0.2",
"@angular/router": "6.0.2",
"core-js": "2.5.6",
"gulp-rename": "^1.3.0",
"highlight.js": "9.12.0",
"lodash": "4.17.10",
"ng2-completer": "1.6.3",
"normalize.css": "8.0.0",
"rxjs": "6.1.0",
"rxjs-compat": "^6.1.0",
"zone.js": "0.8.26"
},
"devDependencies": {
"@angular-devkit/build-angular": "~0.6.3",
"@angular/cli": "6.0.3",
"@angular/compiler-cli": "6.0.2",
"@types/gulp": "4.0.5",
"@types/highlight.js": "9.12.2",
"@types/jasmine": "2.8.7",
"@types/lodash": "4.14.108",
"@types/node": "10.1.0",
"@types/rimraf": "2.0.2",
"@types/run-sequence": "0.0.30",
"@types/rx": "4.1.1",
"angular-cli-ghpages": "0.5.2",
"chalk": "2.4.1",
"codelyzer": "4.3.0",
"gulp": "3.9.1",
"gulp-better-rollup": "3.1.0",
"gulp-clean": "0.4.0",
"gulp-clean-css": "3.9.4",
"gulp-connect": "5.5.0",
"gulp-htmlmin": "4.0.0",
"gulp-if": "2.0.2",
"gulp-sass": "4.0.1",
"gulp-sourcemaps": "2.6.4",
"jasmine-core": "3.1.0",
"jasmine-spec-reporter": "4.2.1",
"karma": "2.0.2",
"karma-chrome-launcher": "2.2.0",
"karma-cli": "1.0.1",
"karma-coverage-istanbul-reporter": "2.0.0",
"karma-jasmine": "1.1.2",
"karma-jasmine-html-reporter": "1.1.0",
"npm-run-all": "4.1.3",
"protractor": "5.3.2",
"resolve-bin": "0.4.0",
"rimraf": "2.6.2",
"run-sequence": "2.2.1",
"standard-changelog": "1.0.19",
"stylelint": "9.2.1",
"ts-node": "6.0.3",
"tslint": "5.10.0",
"tslint-eslint-rules": "5.3.1",
"tslint-language-service": "0.9.9",
"typescript": "~2.7.2"
}
}