UNPKG

2.14 kBJSONView Raw
1{
2 "name": "penthouse",
3 "description": "Generate critical path CSS for web pages",
4 "version": "2.2.0",
5 "homepage": "https://github.com/pocketjoso/penthouse",
6 "author": {
7 "name": "Jonas Ohlsson Aden",
8 "email": "jonas.sebastian.ohlsson@gmail.com",
9 "url": "https://jonassebastianohlsson.com"
10 },
11 "repository": {
12 "type": "git",
13 "url": "git://github.com/pocketjoso/penthouse.git#master"
14 },
15 "bugs": {
16 "url": "https://github.com/pocketjoso/penthouse/issues"
17 },
18 "license": "MIT",
19 "main": "./lib/index.js",
20 "engines": {
21 "node": ">=8.0"
22 },
23 "scripts": {
24 "lint": "eslint src",
25 "test": "jest test/core.test.js",
26 "test-all": "jest test/*.test.js && yarn test-extra && yarn test-perf",
27 "test-perf": "jest --runInBand test/run-sequential/perf.test.js",
28 "test-extra": "jest --runInBand test/run-sequential/node-module.test.js",
29 "prepare": "npm run lint && npm run transpile",
30 "transpile": "babel -d lib src/"
31 },
32 "lint-staged": {
33 "src/**/*.js": [
34 "prettier-standard \"src/**/*.js\"",
35 "git add"
36 ]
37 },
38 "dependencies": {
39 "css-mediaquery": "^0.1.2",
40 "css-tree": "1.0.0-alpha.28",
41 "debug": "^4.1.1",
42 "jsesc": "^2.5.2",
43 "puppeteer": "1.15.0"
44 },
45 "devDependencies": {
46 "@babel/cli": "^7.4.4",
47 "@babel/core": "^7.4.4",
48 "@babel/plugin-transform-spread": "^7.2.2",
49 "@babel/preset-env": "^7.4.4",
50 "babel-jest": "^24.8.0",
51 "eslint": "^5.16.0",
52 "eslint-config-prettier": "^4.2.0",
53 "eslint-config-standard": "^12.0.0",
54 "eslint-plugin-import": "^2.17.2",
55 "eslint-plugin-node": "^9.0.1",
56 "eslint-plugin-promise": "^4.1.1",
57 "eslint-plugin-standard": "^4.0.0",
58 "gm": "^1.23.1",
59 "husky": "^2.2.0",
60 "jest": "^24.8.0",
61 "lint-staged": "^8.1.6",
62 "prettier": "^1.17.0",
63 "prettier-standard": "^9.1.1",
64 "rimraf": "^2.6.3"
65 },
66 "keywords": [
67 "CSS Critical Path Generator",
68 "css",
69 "performance",
70 "build",
71 "tool",
72 "chrome:headless"
73 ],
74 "files": [
75 "lib/**/*.js"
76 ],
77 "husky": {
78 "hooks": {
79 "pre-commit": "lint-staged"
80 }
81 }
82}