This repository has been archived by the owner on Jul 22, 2024. It is now read-only.
forked from wtho/bulma-css-vars
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
74 lines (74 loc) · 1.61 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
71
72
73
74
{
"name": "@kws3/bulma-css-vars",
"version": "0.0.7",
"description": "Bulma with CSS variables",
"keywords": [
"bulma",
"bulma.io",
"CSS Variables"
],
"publishConfig": {
"access": "public"
},
"main": "./dist/cjs/index.js",
"browser": "./dist/esm/index.js",
"module": "./dist/esm/index.js",
"types": "./dist/types/index.d.ts",
"exports": {
".": {
"import": "./dist/esm/index.js",
"require": "./dist/cjs/index.js"
},
"./*": {
"import": "./dist/esm/*.js",
"require": "./dist/cjs/*.js"
}
},
"files": [
"/dist",
"/bin",
"/*.sass"
],
"bin": {
"bulma-css-vars": "bin/bulma-css-vars.js"
},
"scripts": {
"build": "tsc -p tsconfig.json && tsc -p tsconfig-esm.json && webpack",
"prepare": "npm run build",
"prepublishOnly": "npm run test && npm run build",
"test": "jest"
},
"author": "Thomas Wirth <[email protected]>",
"repository": {
"type": "git",
"url": "https://github.com/wtho/bulma-css-vars"
},
"license": "MIT",
"engines": {
"node": ">= 10.0.0"
},
"dependencies": {
"color": "^4.2.1",
"css": "^3.0.0",
"mkdirp": "^1.0.4"
},
"peerDependencies": {
"bulma": "^0.9.3"
},
"devDependencies": {
"@types/color": "^3.0.3",
"@types/css": "^0.0.33",
"@types/jest": "^27.4.1",
"@types/mkdirp": "^1.0.2",
"@types/node": "^17.0.22",
"@types/sass": "^1.43.1",
"jest": "^27.5.1",
"prettier": "^2.6.0",
"sass": "^1.49.9",
"ts-jest": "^27.1.3",
"ts-loader": "^9.2.8",
"typescript": "^4.6.2",
"webpack": "^5.70.0",
"webpack-cli": "^4.9.2"
}
}