forked from IgniteUI/igniteui-angular
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
108 lines (108 loc) · 4.09 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
{
"name": "igniteui-angular",
"version": "0.1.0",
"description": "Infragistics mobile-first Angular native components and supporting directives built with TypeScript",
"author": "Infragistics",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/IgniteUI/igniteui-angular"
},
"bugs": {
"url": "https://github.com/IgniteUI/igniteui-angular/issues"
},
"keywords": [
"igniteui-angular",
"angular",
"angular4",
"UI components",
"grid"
],
"scripts": {
"build": "npm run build:esm && npm run build:umd && gulp make-packagejson",
"build:watch": "concurrently --raw --kill-others \"npm run build:umd:watch\" \"npm run build:esm:watch\"",
"build:esm": "gulp build:esm",
"build:esm:watch": "gulp build:esm:watch",
"build:umd": "webpack --config webpack-umd.config.ts",
"build:umd:watch": "npm run build:umd -- --watch",
"build:docs": "typedoc src/ && npm run build:sassdoc",
"build:styles": "gulp build-style",
"build:sassdoc": "sassdoc src/core/styles",
"ci": "npm run lint && npm run test && npmrun build",
"clean": "rimraf coverage tmp dist",
"codecov": "cat coverage/lcov.info | coveralls",
"explorer": "source-map-explorer dist/index.umd.js",
"lint": "npm run tslint 'src/**/*.ts' && npm run stylelint 'src/core/styles'",
"ngcompile": "ngc -p tsconfig-aot.json",
"prebuild": "rimraf dist tmp",
"prebuild:watch": "rimraf dist tmp",
"test": "karma start",
"test:watch": "karma start --auto-watch --use-polling --no-single-run",
"tslint": "tslint",
"stylelint": "stylelint",
"start:demos": "npm run build && cd demos && npm start",
"start:dev": "concurrently --raw --kill-others \"npm run build:esm:watch\" \"npm run start:demos\""
},
"dependencies": {
"@angular/animations": "^5.2.0",
"@angular/common": "^5.2.0",
"@angular/compiler": "^5.2.0",
"@angular/core": "^5.2.0",
"@angular/forms": "^5.2.0",
"@angular/platform-browser": "^5.2.0",
"@angular/platform-browser-dynamic": "^5.2.0",
"hammerjs": "^2.0.8",
"rxjs": "^5.5.6"
},
"devDependencies": {
"@angular/compiler-cli": "^5.2.0",
"@angular/platform-server": "^5.2.0",
"@types/hammerjs": "^2.0.35",
"@types/jasmine": "^2.8.4",
"@types/karma": "^1.7.3",
"@types/node": "^8.0.47",
"@types/webpack": "^3.8.2",
"@types/webpack-env": "^1.13.3",
"angular2-template-loader": "^0.6.2",
"autoprefixer": "^7.2.5",
"awesome-typescript-loader": "^3.4.1",
"codelyzer": "^4.1.0",
"concurrently": "^3.5.1",
"coveralls": "^3.0.0",
"css-loader": "^0.28.8",
"extract-text-webpack-plugin": "^3.0.2",
"gulp": "^3.9.1",
"gulp-inline-ng2-template": "^4.1.0",
"gulp-postcss": "^7.0.1",
"gulp-sass": "^3.1.0",
"gulp-sourcemaps": "^2.6.4",
"hammer-simulator": "git+https://github.com/hammerjs/simulator.git",
"istanbul-instrumenter-loader": "^3.0.0",
"jasmine-core": "^2.8.0",
"json-loader": "^0.5.7",
"karma": "^2.0.0",
"karma-chrome-launcher": "^2.2.0",
"karma-coverage-istanbul-reporter": "^1.3.3",
"karma-jasmine": "^1.1.1",
"karma-mocha-reporter": "^2.2.5",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^2.0.9",
"node-sass": "^4.7.2",
"raw-loader": "^0.5.1",
"rimraf": "^2.6.2",
"sass-loader": "^6.0.6",
"sassdoc": "^2.5.0",
"source-map-explorer": "^1.5.0",
"stylelint": "^8.4.0",
"stylelint-scss": "^2.3.0",
"to-string-loader": "^1.1.5",
"ts-node": "^4.1.0",
"tslint": "^5.9.1",
"typedoc": "^0.9.0",
"typescript": "^2.6.2",
"webpack": "^3.10.0",
"webpack-angular-externals": "^1.0.2",
"webpack-rxjs-externals": "^1.1.0",
"zone.js": "^0.8.20"
}
}