forked from TryKickoff/kickoff
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
117 lines (117 loc) · 2.9 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
{
"name": "kickoff",
"title": "Kickoff",
"description": "A lightweight front-end framework for creating scalable, responsive websites",
"version": "7.1.0",
"homepage": "http://trykickoff.com",
"authors": [
{
"name": "Zander Martineau",
"url": "http://martineau.tv"
},
{
"name": "Ashley Nolan",
"url": "https://ashleynolan.co.uk"
},
{
"name": "Nic Bell",
"url": "http://nicbell.net"
}
],
"contributors": [
"Github contributors <https://github.com/trykickoff/kickoff/graphs/contributors>"
],
"scripts": {
"test": "xo && grunt postscss",
"prestart": "npm prune && npm install",
"start": "grunt start",
"predeploy": "npm prune && npm install --no-optional",
"deploy": "grunt compile --release",
"info": "npm-scripts-info",
"commit": "git-cz"
},
"scripts-info": {
"test": "Run tests",
"prestart": "Install npm dependencies",
"start": "Open starter checklist on trykickoff.com",
"predeploy": "Install non-optional npm dependencies",
"deploy": "Compile all assets for production deployment",
"commit": "Commit using our standard git commit message format"
},
"repository": {
"type": "git",
"url": "git://github.com/trykickoff/kickoff.git"
},
"bugs": {
"url": "https://github.com/trykickoff/kickoff/issues"
},
"license": "MIT",
"engines": {
"node": ">=4.0"
},
"dependencies": {
"console": "^0.5.2",
"double-dollar": "^1.0.0",
"lite-ready": "^1.0.4"
},
"devDependencies": {
"autoprefixer": "^6.3.6",
"babel-plugin-transform-object-assign": "^6.8.0",
"babel-preset-es2015": "^6.9.0",
"babelify": "^7.3.0",
"cssnano": "^3.7.0",
"grunt": "^1.0.1",
"grunt-browserify": "^5.0.0",
"grunt-contrib-clean": "^1.0.0",
"grunt-contrib-copy": "^1.0.0",
"grunt-contrib-imagemin": "^1.0.1",
"grunt-newer": "^1.2.0",
"imagemin-pngquant": "^4.2.2",
"imagemin-svgo": "^4.2.1",
"load-grunt-configs": "^1.0.0",
"load-grunt-tasks": "^3.5.0",
"minifyify": "^7.3.3",
"postscss": "^1.4.1",
"time-grunt": "^1.3.0",
"xo": "^0.16.0"
},
"optionalDependencies": {
"browser-sync": "^2.13.0",
"commitizen": "^2.8.2",
"cz-conventional-changelog": "^1.1.6",
"grunt-browser-sync": "^2.1.3",
"grunt-contrib-watch": "^1.0.0",
"grunt-filesizegzip": "^0.3.0",
"grunt-scss-lint": "^0.3.8",
"npm-scripts-info": "^0.3.6",
"opn": "^4.0.2"
},
"keywords": [
"⚽"
],
"babel": {
"presets": [
"es2015"
],
"plugins": [
"transform-object-assign"
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"xo": {
"esnext": true,
"global": [
"window"
],
"ignores": [
"**/assets/src/js/standalone/**/*.js",
"**/assets/dist/**/*.js",
"_grunt-configs/*.js",
"Gruntfile.js"
]
}
}