-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
110 lines (110 loc) · 2.57 KB
/
package.json
File metadata and controls
110 lines (110 loc) · 2.57 KB
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
{
"name": "warlock-spell-webapp",
"version": "1.0.0-alpha.2",
"description": "A warlock spell to manage client-side web applications.",
"homepage": "https://github.com/ngbp/spell-webapp",
"author": {
"name": "Warlock Team",
"url": "http://getwarlock.com"
},
"repository": {
"type": "git",
"url": "git://github.com/ngbp/spell-webapp.git"
},
"bugs": {
"url": "https://github.com/ngbp/spell-webapp"
},
"licenses": [
{
"type": "MIT",
"url": "https://github.com/ngbp/spell-webapp/blob/master/LICENSE"
}
],
"engines": {
"node": ">= 0.10.0"
},
"keywords": [
"warlockplugin",
"warlockspell"
],
"warlock": {
"default": [
"webapp-build",
"webapp-compile"
],
"paths": {
"source": "src",
"build": "build",
"compile": "bin",
"source_app": "<%= paths.source %>/app",
"build_js": "<%= paths.build %>/scripts",
"build_css": "<%= paths.build %>/styles",
"source_assets": "<%= paths.source %>/assets",
"build_assets": "<%= paths.build %>/assets",
"compile_assets": "<%= paths.compile %>/assets"
},
"globs": {
"source": {
"css": [
"<%= paths.source_app %>/**/*.css"
],
"js": [
"<%= paths.source_app %>/**/*.js",
"!<%= paths.source_app %>/**/*.spec.js"
],
"assets": [
"<%= paths.source_assets %>/**/*"
],
"html": [
"<%= paths.source %>/index.html",
"<%= paths.source_app %>/**/*.html"
]
},
"vendor": {
"js": [],
"css": []
}
},
"tasks": {
"webapp-lintjs": {
"lint": {
"bitwise": true,
"curly": true
},
"reporter": {},
"failOnError": {
"fail": true
}
},
"webapp-minjs": {
"outSourceMap": true
},
"webapp-lintcss": {
"failOnError": {
"fail": true
}
},
"webapp-concatjs": "<%= pkg.name %>-<%= pkg.version %>.min.js",
"webapp-concatcss": "<%= pkg.name %>-<%= pkg.version %>.min.css",
"webapp-html-template": {
"build": "<%= paths.build %>",
"compile": "<%= paths.compile %>"
}
},
"template-data": {
"webappScripts": [],
"webappStyles": []
}
},
"peerDependencies": {
"warlock-engine": ">=1.0.0-alpha.2"
},
"dependencies": {
"csslint": "0.10",
"gulp-concat": "~2.1",
"gulp-jshint": "~1.3",
"gulp-minify-css": "~0.3",
"gulp-uglify": "~0.2",
"jshint-stylish": "~0.1"
}
}