This repository was archived by the owner on Dec 21, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
100 lines (100 loc) · 2.08 KB
/
package.json
File metadata and controls
100 lines (100 loc) · 2.08 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"name": "postcss-env-function",
"version": "4.0.2",
"description": "Use env() variables in CSS",
"author": "Jonathan Neal <jonathantneal@hotmail.com>",
"license": "CC0-1.0",
"repository": "csstools/postcss-env-function",
"homepage": "https://github.com/csstools/postcss-env-function#readme",
"bugs": "https://github.com/csstools/postcss-env-function/issues",
"main": "dist/index.cjs",
"module": "dist/index.mjs",
"files": [
"dist"
],
"scripts": {
"build": "npx rollup -c .rollup.js",
"build:watch": "npx rollup -c .rollup.js --watch",
"lint": "npx eslint --cache src",
"lint:fix": "npx eslint --cache --fix",
"pretest": "npm run build",
"test": "npm run lint && npm run tape",
"tape": "postcss-tape",
"prepublishOnly": "npm test"
},
"engines": {
"node": ">=12"
},
"dependencies": {
"postcss-values-parser": "6.0.1"
},
"peerDependencies": {
"postcss": "^8.3"
},
"devDependencies": {
"@babel/core": "^7.15.8",
"@babel/preset-env": "^7.15.8",
"@rollup/plugin-babel": "^5.3.0",
"eslint": "^8.1.0",
"postcss": "^8.3.6",
"postcss-tape": "^6.0.1",
"pre-commit": "^1.2.2",
"rollup": "^2.58.3"
},
"babel": {
"presets": [
[
"@babel/env",
{
"targets": "maintained node versions"
}
]
]
},
"eslintConfig": {
"env": {
"es6": true
},
"extends": "eslint:recommended",
"parserOptions": {
"ecmaVersion": 12,
"sourceType": "module",
"ecmaFeatures": {
"modules": true
}
},
"rules": {
"semi": [
"error",
"never"
]
}
},
"rollup": {
"input": "src/index.js",
"plugins": [
"@rollup/plugin-babel"
],
"output": [
{
"exports": "default",
"file": "dist/index.cjs",
"format": "cjs"
},
{
"file": "dist/index.mjs",
"format": "esm"
}
]
},
"keywords": [
"postcss",
"css",
"postcss-plugin",
"environments",
"variables",
"envs",
"constants",
"functions"
]
}