-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
45 lines (45 loc) · 1004 Bytes
/
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
{
"name": "critical-css-server",
"version": "0.5.0",
"description": "Build critical path css asynchronously on demand",
"main": "src/main.js",
"scripts": {
"start": "node src/main.js",
"test": "mocha --recursive",
"debug": "node --inspect-brk src/main.js"
},
"repository": {
"type": "git",
"url": "https://github.com/wheeyls/critical-css-server"
},
"keywords": [
"node",
"criticalcss",
"above-the-fold",
"inline-css",
"pagespeed",
"phantomjs"
],
"license": "MIT",
"dependencies": {
"bluebird": "3.4.7",
"body-parser": "1.16.0",
"bull": "3.3.7",
"cluster": "0.7.7",
"express": "4.14.1",
"extend": "3.0.0",
"penthouse": "1.3.0",
"redis": "2.6.5",
"redis-url": "1.2.1",
"request": "2.79.0",
"yarn": "1.0.2"
},
"devDependencies": {
"expect.js": "0.3.1",
"mocha": "3.2.0",
"prettier": "1.6.1",
"redis-mock": "0.16.0",
"simple-mock": "0.7.3",
"supertest": "3.0.0"
}
}