forked from akveo/ng2-smart-table
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
101 lines (101 loc) · 3.17 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
{
"name": "ng2-smart-table-demo",
"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": "gulp build:release",
"test": "ng test -sr",
"test:coverage": "npm run clean:coverage && ng test -sr -cc",
"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": "4.1.3",
"@angular/common": "4.1.3",
"@angular/compiler": "4.1.3",
"@angular/core": "4.1.3",
"@angular/forms": "4.1.3",
"@angular/http": "4.1.3",
"@angular/platform-browser": "4.1.3",
"@angular/platform-browser-dynamic": "4.1.3",
"@angular/platform-server": "4.1.3",
"@angular/router": "4.1.3",
"core-js": "2.4.1",
"highlight.js": "9.10.0",
"lodash": "4.17.4",
"ng2-completer": "1.2.2",
"normalize.css": "5.0.0",
"rxjs": "5.4.0",
"zone.js": "0.8.10"
},
"devDependencies": {
"@angular/cli": "1.0.4",
"@angular/compiler-cli": "4.1.3",
"@types/chalk": "0.4.31",
"@types/gulp": "4.0.2",
"@types/highlight.js": "9.1.9",
"@types/jasmine": "2.5.38",
"@types/lodash": "4.14.58",
"@types/node": "6.0.63",
"@types/rimraf": "0.0.28",
"@types/run-sequence": "0.0.29",
"@types/rx": "2.5.33",
"angular-cli-ghpages": "0.5.1",
"chalk": "1.1.3",
"codelyzer": "3.0.1",
"gulp": "3.9.1",
"gulp-better-rollup": "1.1.1",
"gulp-clean": "0.3.2",
"gulp-clean-css": "3.0.4",
"gulp-connect": "5.0.0",
"gulp-htmlmin": "3.0.0",
"gulp-if": "2.0.2",
"gulp-sass": "3.1.0",
"gulp-sourcemaps": "2.4.1",
"jasmine-core": "2.5.2",
"jasmine-spec-reporter": "3.2.0",
"karma": "1.4.1",
"karma-chrome-launcher": "2.0.0",
"karma-cli": "1.0.1",
"karma-coverage-istanbul-reporter": "0.2.3",
"karma-jasmine": "1.1.0",
"karma-jasmine-html-reporter": "0.2.2",
"npm-run-all": "4.0.1",
"protractor": "5.1.1",
"resolve-bin": "0.4.0",
"rimraf": "2.6.1",
"run-sequence": "1.2.2",
"standard-changelog": "1.0.1",
"stylelint": "7.9.0",
"ts-node": "2.1.2",
"tslint": "5.2.0",
"tslint-eslint-rules": "4.0.0",
"tslint-language-service": "0.9.6",
"typescript": "2.3.2"
}
}