-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.35 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
{
"name": "spacing-helper",
"version": "4.1.6",
"description": "Standalone helper for creating consistent spacing between the elements of your UI",
"type": "module",
"source": "src/index.js",
"exports": "./build/index.js",
"main": "./build/index.cjs",
"module": "./build/index.module.js",
"unpkg": "./build/index.umd.js",
"types": "build/index.d.ts",
"license": "MIT",
"author": "Viktor Pasynok",
"email": "[email protected]",
"keywords": [
"cssinjs",
"emotion",
"styled-components",
"ui",
"helper",
"spacing"
],
"private": false,
"sideEffects": false,
"files": [
"build"
],
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"repository": {
"type": "git",
"url": "[email protected]:binjospookie/spacing-helper.git"
},
"bugs": {
"url": "https://github.com/binjospookie/spacing-helper/issues"
},
"homepage": "https://github.com/binjospookie/spacing-helper#readme",
"scripts": {
"build:js": "microbundle --compress --no-sourcemap --no-raw",
"copy:types": "cp src/index.d.ts ./build/index.d.ts",
"build": "rm -rf ./build && mkdir ./build && npm run build:js & npm run copy:types && wait",
"test": "uvu",
"clean-publish": "clean-publish"
},
"devDependencies": {
"clean-publish": "4.1.1",
"microbundle": "^0.15.1",
"uvu": "^0.5.6"
}
}