This repository has been archived by the owner on Apr 30, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 142
/
package.json
116 lines (116 loc) · 2.93 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
{
"name": "pure-site",
"description": "The Pure CSS website.",
"homepage": "http://purecss.io/",
"version": "1.18.13",
"private": true,
"repository": {
"type": "git",
"url": "git://github.com/pure-css/pure-site.git"
},
"author": "Tilo Mitra <[email protected]> (http://www.tilomitra.com/)",
"contributors": [
"James Alley <[email protected]> (http://www.manlagi.com/)",
"Eric Ferraiuolo <[email protected]> (http://ericf.me/)",
"Seth Bertalotto <[email protected]> (http://seth.bertalotto.net)"
],
"directories": {
"lib": "./lib",
"middleware": "./middleware",
"public": "./public",
"routes": "./routes",
"views": "./views"
},
"main": "server.js",
"engines": {
"node": "^6.0.0",
"npm": ">=1.1.2"
},
"dependencies": {
"archiver": "^3.1.1",
"async": "^3.2.0",
"combohandler": "^0.4.0",
"css-mediaquery": "github:ericf/css-mediaquery#umd",
"css-parse": "^2.0.0",
"express": "^3.21.2",
"express-annotations": "~0.1.0",
"express-handlebars": "^4.0.2",
"express-map": "~0.1.0",
"express-params": "~0.0.3",
"express-slash": "~1.0.0",
"express-state": "^1.1.4",
"express-yui": "^1.3.2",
"glob": "^7.1.6",
"handlebars": "^4.7.5",
"purecss": "^1.0.1",
"rework": "^1.0.0",
"rework-pure-grids": "^1.0.0",
"stripmq": "0.0.6",
"ypromise": "^0.3.0",
"yui": "^3.18.1"
},
"devDependencies": {
"broccoli": "^0.16.9",
"broccoli-filter": "^1.2.4",
"broccoli-kitchen-sink-helpers": "^0.3.1",
"broccoli-merge-trees": "^3.0.2",
"broccoli-unwatched-tree": "^0.1.1",
"broccoli-writer": "^0.1.1",
"chai": "^4.0.0",
"chai-as-promised": "^7.1.1",
"es-dependency-graph": "^0.1.3",
"es6-module-transpiler": "^0.4.0",
"grunt": "^1.1.0",
"grunt-broccoli-build": "^0.6.0",
"grunt-cli": "^1.2.0",
"grunt-contrib-clean": "^2.0.0",
"grunt-pure-grids": "^1.0.0",
"grunt-shell-spawn": "^0.4.0",
"jenkins-mocha": "^8.0.0",
"js-module-formats": "^0.1.0",
"mkdirp": "^0.5.1",
"mocha": "^7.1.1",
"now-travis": "^1.2.0",
"rimraf": "^3.0.0",
"supertest": "^4.0.2",
"walk-sync": "^2.0.2"
},
"scripts": {
"functional": "exit 0",
"build": "grunt",
"now-start": "NODE_ENV=production node server.js",
"postinstall": "grunt",
"start": "node server.js",
"test": "jenkins-mocha tests/unit"
},
"jshintConfig": {
"browser": true,
"esnext": true,
"evil": true,
"expr": true,
"node": true,
"regexdash": true,
"sub": true,
"trailing": true,
"undef": false,
"unused": false,
"wsh": true
},
"yhint": {
"excludes": [
"build/",
"node_modules/",
"public/js/rainbow/"
]
},
"yahoo": {
"bugzilla": {
"product": "yui utilities",
"component": "Pure"
},
"custodian": {
"email": "[email protected]",
"url": "http://purecss.io/"
}
}
}