-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.83 KB
/
Copy pathpackage.json
File metadata and controls
67 lines (67 loc) · 1.83 KB
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
{
"name": "extract-inline-css",
"version": "1.0.2",
"description": "Extract inline CSS from HTML",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"author": "Vadzim Tsupryk <meecrobe@gmail.com>",
"license": "MIT",
"scripts": {
"build": "tsc",
"test": "jest",
"test:watch": "jest --watchAll",
"format": "prettier --write src/**/*.ts",
"lint": "eslint src/**/*.ts",
"prepare": "yarn build",
"prepublishOnly": "yarn test && yarn lint",
"preversion": "yarn lint",
"version": "yarn format && git add .",
"postversion": "git push && git push --tags"
},
"files": [
"dist/**/*"
],
"keywords": [
"css",
"extract",
"html",
"inline",
"styles"
],
"bugs": {
"url": "https://github.com/meecrobe/extract-inline-css/issues"
},
"homepage": "https://github.com/meecrobe/extract-inline-css#readme",
"repository": {
"type": "git",
"url": "git+https://github.com:meecrobe/extract-inline-css.git"
},
"dependencies": {
"cheerio": "^0.22.0",
"js-beautify": "^1.10.3",
"minimist": "1.2.3"
},
"devDependencies": {
"@babel/core": "^7.8.7",
"@babel/preset-env": "^7.8.7",
"@babel/preset-typescript": "^7.8.3",
"@types/cheerio": "^0.22.16",
"@types/jest": "^25.1.3",
"@types/js-beautify": "^1.8.1",
"@typescript-eslint/eslint-plugin": "^2.22.0",
"@typescript-eslint/parser": "^2.22.0",
"babel-jest": "^25.1.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.0",
"eslint-config-standard": "^14.1.0",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-jest": "^23.8.1",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"jest": "^25.1.0",
"prettier": "^1.19.1",
"typescript": "^3.8.3"
}
}