This repository was archived by the owner on Apr 5, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 1.73 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
{
"name": "@owja/babel-css-inline-plugin",
"version": "1.0.0-alpha.3",
"description": "Babel plugin to inline CSS into JavaScript",
"source": "src/plugin.ts",
"main": "dist/plugin.js",
"module": "dist/plugin.module.js",
"types": "dist/plugin.d.ts",
"scripts": {
"prepack": "shx rm -rf dist/* && microbundle --format es,cjs --target node",
"test": "jest",
"lint": "eslint --ext .ts ./src",
"lint:fix": "eslint --ext .ts ./src --fix",
"prettier": "prettier src/**/*.ts --check",
"prettier:fix": "prettier src/**/*.ts --write"
},
"keywords": [
"babel",
"css",
"inline",
"plugin",
"styles",
"stylesheets",
"build",
"parser"
],
"author": "Hauke Broer",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.12.9",
"@babel/types": "^7.12.7",
"@types/babel__core": "^7.1.12",
"@types/babel__traverse": "^7.0.16",
"@typescript-eslint/eslint-plugin": "^4.8.2",
"@typescript-eslint/parser": "^4.8.2",
"babel-plugin-tester": "^10.0.0",
"eslint": "^7.14.0",
"eslint-plugin-jest": "^24.1.3",
"jest": "^26.6.3",
"microbundle": "^0.12.4",
"prettier": "2.2.1",
"shx": "^0.3.3",
"slash": "^3.0.0",
"ts-jest": "^26.4.4",
"typescript": "^4.1.2"
},
"browserslist": [
"IE > 9",
"FF > 20",
"CHROME > 20"
],
"dependencies": {
"autoprefixer": "^10.0.4",
"cssnano": "^4.1.10",
"postcss": "^8.1.10",
"postcss-cli": "^8.3.0",
"postcss-import": "^13.0.0"
},
"files": [
"/dist",
"!/dist/postcss"
],
"repository": {
"type": "git",
"url": "git+https://github.com/owja/babel-css-inline-plugin.git"
},
"bugs": {
"url": "https://github.com/owja/babel-css-inline-plugin/issues"
}
}