-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathpackage.json
121 lines (121 loc) · 3.96 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
109
110
111
112
113
114
115
116
117
118
119
120
121
{
"name": "ng2-cbp-cf",
"version": "0.0.1-alpha.10",
"description": "CBP Common Framework for Angular2",
"homepage": "",
"repository": {
"type": "git",
"url": "https://github.com/US-CBP/ng2-cbp-cf.git"
},
"contributors": [
{
"name": "Xavier Mouligneau",
"email": "xmouligneau@gmail.com"
},
{
"name": "Martin Francisco",
"email": "martin2great@yahoo.com"
},
{
"name": "Aruna Chinthakindi",
"email": "arunachinthakindi@gmail.com"
}
],
"author": "CBP Common Framework",
"license": "CC0-1.0",
"engines": {
"node": ">=6.4"
},
"main": "index.ts",
"module": "index.ts",
"scripts": {
"prebuild": "npm run-s clean && npm run-s lint && npm run-s test",
"build": "cross-env NODE_ENV=production webpack --display-chunks",
"copy-d-ts": "cpx dts/**/*d.ts dist",
"watch": "npm run-s clean && cross-env NODE_ENV=development webpack --watch",
"nowatch": "npm run-s clean && cross-env NODE_ENV=development webpack",
"clean": "del-cli dist && del-cli dts",
"lint": "npm run-s lint:js && npm run-s lint:ts && npm run-s lint:css",
"lint:js": "eslint -c .eslintrc.yml *.js",
"lint:ts": "tslint --project tsconfig.json src/**/*.ts",
"lint:css": "stylelint \"theme/*.scss\" \"src/**/*.scss\" --config stylelint-config.json",
"test": "karma start --single-run",
"test:watch": "karma start",
"prepublishOnly": "npm run-s build",
"semantic-release": "semantic-release pre && npm publish && semantic-release post"
},
"dependencies": {
"@angular/animations": "^7.0.0",
"@angular/cdk": "^7.0.0",
"@angular/common": "^7.0.0",
"@angular/compiler": "^7.0.0",
"@angular/core": "^7.0.0",
"@angular/forms": "^7.0.0",
"@angular/http": "^7.0.0",
"@angular/material": "^7.0.0",
"@angular/platform-browser": "^7.0.0",
"@angular/platform-browser-dynamic": "^7.0.0",
"@angular/router": "^7.0.0",
"core-js": "^2.5.6",
"hammerjs": "^2.0.8",
"lodash": "^4.17.10",
"material-design-icons": "^3.0.1",
"moment": "^2.22.1",
"reflect-metadata": "^0.1.12",
"roboto-fontface": "^0.10.0",
"rxjs": "^6.2.0",
"zone.js": "^0.8.26"
},
"devDependencies": {
"@types/core-js": "^2.0.0",
"@types/hammerjs": "^2.0.36",
"@types/jasmine": "^3.0.0",
"@types/lodash": "^4.14.108",
"@types/node": "^10.0.6",
"angular2-template-loader": "^0.6.2",
"autoprefixer": "^9.0.0",
"awesome-typescript-loader": "^5.2.0",
"babel-core": "^6.26.3",
"babel-loader": "^8.0.0",
"codelyzer": "^4.3.0",
"cpx": "^1.5.0",
"cross-env": "^5.1.5",
"css-loader": "^2.0.0",
"del-cli": "^1.1.0",
"eslint": "^5.0.0",
"file-loader": "^2.0.0",
"html-loader": "^0.5.5",
"image-webpack-loader": "^4.2.0",
"jasmine-core": "^3.1.0",
"karma": "^3.0.0",
"karma-chrome-launcher": "^2.2.0",
"karma-coverage": "^1.1.2",
"karma-jasmine": "^2.0.0",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^3.0.0",
"mini-css-extract-plugin": "^0.5.0",
"node-sass": "^4.9.0",
"raw-loader": "^1.0.0",
"sass-loader": "^7.0.1",
"stylelint": "^9.2.0",
"stylelint-order": "^2.0.0",
"ts-helpers": "^1.1.2",
"tslint": "^5.10.0",
"typescript": "~3.1.1",
"uglifyjs-webpack-plugin": "^2.0.0",
"url-loader": "^1.0.0",
"webpack": "^4.8.1",
"webpack-cli": "^3.0.0",
"webpack-dev-server": "^3.1.4"
},
"keywords": [
"CBP",
"CF",
"Common",
"Frameworks",
"Team",
"UI",
"library",
"ANGULAR2"
]
}