-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
24 lines (24 loc) · 821 Bytes
/
package.json
File metadata and controls
24 lines (24 loc) · 821 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{
"name": "@ulyssear/css-in-js-in-html",
"version": "0.4.0",
"description": "CSS-in-JS-in-HTML is a library that allows you to use CSS-in-JS with HTML only.",
"main": "build/index.min.js",
"scripts": {
"tests": "echo \"Error: no test specified\" && exit 1",
"compress": "node scripts/compress.js",
"build": "esbuild src/index.js --bundle --outfile=build/index.min.js --minify && npm run compress && cp src/index.js build/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ulyssear/css-in-js-in-html.git"
},
"author": "Ulysse ARNAUD",
"bugs": {
"url": "https://github.com/ulyssear/css-in-js-in-html/issues"
},
"homepage": "https://github.com/ulyssear/css-in-js-in-html#readme",
"license": "MIT",
"dependencies": {
"esbuild": "^0.17.19"
}
}