-
Notifications
You must be signed in to change notification settings - Fork 20
/
package.json
113 lines (113 loc) · 3.82 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
{
"private": true,
"version": "0.1.90",
"scripts": {
"gulp": "gulp",
"build": "npm run build_dev",
"prebuild_dev": "npm run clean",
"build_dev": "webpack --config config/webpack.dev.js --progress --profile --colors --display-error-details --display-cached",
"build_components": "webpack --config config/webpack-components.js --progress --profile --colors --display-error-details --display-cached --bail",
"prebuild_prod": "npm run clean",
"build_prod": "webpack --config config/webpack.prod.js --progress --profile --colors --display-error-details --display-cached --bail",
"clean": "rimraf -- dist",
"prebuild_components": "rimraf -- dist/@cppui/angularjs-components",
"postinstall": "typings install",
"publish": "gulp release",
"ci:publish": "gulp ci-release",
"serve": "http-server dist --cors",
"start": "webpack-dev-server --config config/webpack.dev.js --inline --progress --profile --colors --watch --display-error-details --display-cached",
"test": "node --max-old-space-size=4096 node_modules/karma/bin/karma start"
},
"dependencies": {
"angular": "1.5.5",
"angular-animate": "1.5.5",
"angular-breadcrumb": "^0.4.1",
"angular-messages": "1.5.5",
"angular-sanitize": "1.5.5",
"angular-slugify": "^1.0.3",
"angular-ui-bootstrap": "^2.1.3",
"angular-ui-router": "^0.2.18",
"ng-clamp": "^1.0.2",
"ngSmoothScroll": "^2.0.1"
},
"devDependencies": {
"angular-mocks": "1.5.5",
"assets-webpack-plugin": "^3.4.0",
"awesome-typescript-loader": "^0.16.2",
"bootstrap-sass": "^3.3.6",
"chalk": "^1.1.3",
"copy-webpack-plugin": "^3.0.0",
"css-loader": "^0.23.1",
"del": "^2.2.0",
"file-loader": "^0.8.5",
"font-awesome": "^4.6.1",
"govuk-elements-sass": "2.2.1",
"govuk_template_mustache": "^0.17.0",
"gulp": "^3.9.1",
"gulp-bump": "^2.1.0",
"gulp-clean": "^0.3.2",
"gulp-connect": "^5.0.0",
"gulp-env": "^0.4.0",
"gulp-git": "^1.7.2",
"gulp-load-plugins": "^1.3.0",
"gulp-protractor": "^3.0.0",
"gulp-replace": "^0.5.4",
"gulp-util": "^3.0.7",
"html-loader": "^0.4.3",
"html-webpack-plugin": "^2.15.0",
"http-server": "^0.9.0",
"istanbul-instrumenter-loader": "^0.2.0",
"jasmine-jquery": "^2.1.1",
"jasmine-reporters": "^2.2.0",
"jasmine-sinon": "^0.4.0",
"jasmine-spec-reporter": "^2.7.0",
"jquery": "^3.3.1",
"json-loader": "^0.5.4",
"karma": "^0.13.22",
"karma-chrome-launcher": "^0.2.3",
"karma-coverage": "^0.5.5",
"karma-jasmine": "^0.3.8",
"karma-jasmine-jquery": "^0.1.1",
"karma-jasmine-sinon": "^1.0.4",
"karma-mocha-reporter": "^2.0.0",
"karma-phantomjs-launcher": "^1.0.0",
"karma-sinon": "^1.0.4",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "1.7.0",
"merge-stream": "^1.0.0",
"mkdirp": "^0.5.1",
"ng-annotate-webpack-plugin": "^0.1.2",
"node-sass": "^3.5.3",
"pa11y": "^4.0.0",
"phantomjs-prebuilt": "^2.1.7",
"postcss-loader": "^0.8.2",
"prismjs": "^1.4.1",
"protractor": "^3.3.0",
"protractor-console": "^2.0.1",
"protractor-console-plugin": "^0.1.1",
"protractor-jasmine2-html-reporter": "0.0.6",
"q": "^1.4.1",
"raw-loader": "0.5.1",
"remap-istanbul": "^0.5.1",
"request": "^2.74.0",
"resolve-url-loader": "^1.4.3",
"rimraf": "^2.5.2",
"rucksack-css": "^0.8.6",
"run-sequence": "^1.2.1",
"sass-loader": "^3.2.0",
"sinon": "^1.17.3",
"source-map-loader": "^0.1.5",
"style-loader": "^0.13.1",
"tslint": "^3.7.1",
"tslint-loader": "^2.1.3",
"typescript": "~1.8.9",
"typings": "^0.7.12",
"url-loader": "^0.5.7",
"vinyl-fs": "^2.4.3",
"webpack": "^1.13.1",
"webpack-dev-server": "^1.14.1",
"webpack-merge": "^0.8.4",
"wrench": "^1.5.9",
"yargs": "^4.7.1"
}
}