-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 948 Bytes
/
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
{
"name": "unitflip",
"version": "1.4.1",
"main": "dist/index.cjs",
"module": "dist/index.esm.mjs",
"browser": "dist/index.umd.js",
"type": "module",
"types": "dist/index.d.ts",
"files": [
"dist/"
],
"scripts": {
"build": "tsc -b && rollup -c",
"dev": "rollup -c -w",
"test": "jest"
},
"author": "shaian",
"keywords": [
"converter",
"value",
"unit",
"css-units",
"css-playground",
"css-unit-converter"
],
"description": "A Javascript library for converting CSS units.",
"homepage": "https://github.com/zshaian/unitflip",
"repository": {
"type": "git",
"url": "https://github.com/zshaian/unitflip.git"
},
"bugs": {
"url": "https://github.com/zshaian/unitflip/issues"
},
"license": "MIT",
"devDependencies": {
"jest": "^29.7.0",
"rollup": "^4.28.1",
"@babel/core":"^7.15.0",
"@babel/preset-env":"^7.15.0",
"babel-jest":"27.0.6"
}
}