-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
109 lines (109 loc) · 2.71 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
{
"name": "frontstart",
"description": "A Modular Front-End Tooling System",
"version": "0.0.1",
"author": "Gion Kunz",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/gionkunz/frontstart.git"
},
"bugs": {
"url": "https://github.com/gionkunz/frontstart/issues"
},
"keywords": [
"frontstart",
"build system",
"web stack",
"frontend tooling"
],
"dependencies": {
"angular": "^1.3.2",
"angular-mocks": "^1.3.2",
"angular-resource": "^1.3.2",
"angular-route": "^1.3.2"
},
"devDependencies": {
"assemble": "~0.4.42",
"assemble-dox": "0.0.2",
"browserify": "^5.12.0",
"browserify-istanbul": "^0.1.2",
"browserify-ng-html2js": "^0.3.1",
"deamdify": "^0.1.1",
"debowerify": "^0.8.1",
"es6ify": "^1.5.1",
"glob": "^4.0.6",
"grunt": "~0.4.5",
"grunt-autoprefixer": "~0.7.4",
"grunt-browserify": "^3.1.0",
"grunt-cli": "^0.1.13",
"grunt-connect-rewrite": "^0.2.1",
"grunt-contrib-clean": "~0.5.0",
"grunt-contrib-concat": "~0.4.0",
"grunt-contrib-connect": "~0.7.1",
"grunt-contrib-copy": "~0.5.0",
"grunt-contrib-csslint": "^0.3.1",
"grunt-contrib-cssmin": "~0.9.0",
"grunt-contrib-imagemin": "^0.9.1",
"grunt-contrib-jshint": "^0.10.0",
"grunt-contrib-uglify": "~0.4.0",
"grunt-contrib-watch": "~0.6.1",
"grunt-critical": "0.0.3",
"grunt-karma": "^0.9.0",
"grunt-sass": "~0.16.0",
"grunt-watchify": "^0.1.0",
"js-yaml": "^3.2.2",
"jshint-stylish": "~0.2.0",
"karma": "^0.12.24",
"karma-chrome-launcher": "^0.1.5",
"karma-coverage": "^0.2.6",
"karma-firefox-launcher": "^0.1.3",
"karma-html2js-preprocessor": "^0.1.0",
"karma-jasmine": "^0.2.2",
"karma-jasmine-jquery": "^0.1.1",
"karma-junit-reporter": "^0.2.2",
"karma-phantomjs-launcher": "^0.1.4",
"load-grunt-tasks": "~0.4.0",
"lodash": "^2.4.1",
"remapify": "^1.3.0",
"seed-random": "^2.2.0",
"time-grunt": "~0.3.2"
},
"engines": {
"node": ">=0.8.0"
},
"scripts": {
"test": "grunt test"
},
"config": {
"source": "src",
"dest": "target/main/resources",
"siteDest": "target/main",
"reportDest": "target/test/reports",
"connectBase": [
".tmp",
"src",
".",
".tmp/pages"
],
"connectHost": "0.0.0.0",
"connectPort": "9000",
"connectReWrites": [
{
"from": "^/resources/(.*)$",
"to": "/$1"
}
],
"sassIncludePaths": [
"src/",
"src/bower_components",
"src/bower_components/compass-mixins/lib",
"src/bower_components/foundation/scss"
],
"browserSupport": [
"> 1%",
"last 2 version",
"ie 9"
]
}
}