UNPKG

2.32 kBJSONView Raw
1{
2 "name": "penthouse",
3 "description": "Generate critical path CSS for web pages",
4 "version": "1.8.1",
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": ">=6.14.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 "precommit": "lint-staged",
30 "prepare": "npm run lint && npm run transpile",
31 "transpile": "babel -d lib src/"
32 },
33 "lint-staged": {
34 "src/**/*.js": [
35 "prettier-standard \"src/**/*.js\"",
36 "git add"
37 ]
38 },
39 "dependencies": {
40 "css-mediaquery": "^0.1.2",
41 "css-tree": "1.0.0-alpha.28",
42 "debug": "^3.1.0",
43 "jsesc": "^2.5.1",
44 "puppeteer": "1.6.2"
45 },
46 "devDependencies": {
47 "babel-cli": "^6.26.0",
48 "babel-core": "^6.26.3",
49 "babel-jest": "^23.4.2",
50 "babel-plugin-transform-object-rest-spread": "^6.26.0",
51 "babel-preset-env": "^1.7.0",
52 "eslint": "^5.3.0",
53 "eslint-config-prettier": "^3.0.1",
54 "eslint-config-standard": "^11.0.0",
55 "eslint-plugin-import": "^2.14.0",
56 "eslint-plugin-node": "^7.0.1",
57 "eslint-plugin-promise": "^3.8.0",
58 "eslint-plugin-standard": "^3.1.0",
59 "gm": "^1.23.1",
60 "husky": "^0.14.3",
61 "jest": "^23.5.0",
62 "lint-staged": "^7.2.2",
63 "prettier": "^1.14.2",
64 "prettier-standard": "^8.0.0",
65 "rimraf": "^2.6.2"
66 },
67 "keywords": [
68 "CSS Critical Path Generator",
69 "css",
70 "performance",
71 "build",
72 "tool",
73 "chrome:headless"
74 ],
75 "files": [
76 "lib/**/*.js"
77 ],
78 "babel": {
79 "presets": [
80 [
81 "env",
82 {
83 "targets": {
84 "node": "6.14"
85 }
86 }
87 ]
88 ],
89 "plugins": [
90 "transform-object-rest-spread"
91 ]
92 }
93}