-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
60 lines (60 loc) · 1.56 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
{
"name": "stylis-plugin-css-variables",
"version": "1.0.7",
"description": "Stylis plugin that transforms CSS variable into static values for non-supported browsers.",
"main": "dist/cjs/index.js",
"module": "dist/es/index.js",
"sideEffects": false,
"private": false,
"scripts": {
"prestart": "zero prestart",
"build:es": "BUILD_FORMAT=es zero build -d dist/es",
"build:cjs": "BUILD_FORMAT=cjs zero build -d dist/cjs",
"build": "npm run build:cjs && npm run build:es -- --no-clean",
"lint": "zero lint",
"dev": "zero test",
"test": "zero test --coverage",
"test:coverage": "zero test --coverage",
"format": "zero format",
"validate": "zero validate",
"release": "zero release",
"version": "npm run build",
"precommit": "zero pre-commit"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"author": "Jon Quach <[email protected]> (https://jonquach.com)",
"repository": {
"type": "git",
"url": "git+https://github.com/itsjonq/stylis-plugin-css-variables.git"
},
"bugs": {
"url": "https://github.com/itsjonq/stylis-plugin-css-variables/issues"
},
"homepage": "https://github.com/itsjonq/stylis-plugin-css-variables#readme",
"keywords": [
"stylis",
"css-in-js",
"ie11",
"css",
"variables",
"css-variables",
"plugin",
"emotion",
"styled-components"
],
"license": "MIT",
"dependencies": {
"@ungap/weakset": "^0.2.1",
"memize": "^1.1.0"
},
"devDependencies": {
"@itsjonq/zero": "5.0.1"
},
"publishConfig": {
"access": "public"
}
}