css-in-props 0.0.2 → 0.8.28

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (3) hide show
  1. package/README.md +25 -0
  2. package/package.json +30 -13
  3. package/src/index.js +2 -0
package/README.md ADDED
@@ -0,0 +1,25 @@
1
+ # Symbols
2
+
3
+ UI Library in composition of [Scratch](https://github.com/smbo-ls/scratch) and [DOMQL](https://github.com/domql/domql)
4
+
5
+ [![npm version](https://badge.fury.io/js/smbls.svg)](https://badge.fury.io/js/smbls)
6
+
7
+ ### Setup
8
+
9
+ 1. Installation
10
+ ```
11
+ yarn add smbls
12
+ ```
13
+
14
+ 2. Import the component from Symbols
15
+ ```
16
+ import { Box } from 'smbls'
17
+ ```
18
+
19
+ 3. Use it inside your DOMQL code
20
+ ```
21
+ const Header = {
22
+ proto: Box,
23
+ // ...Other Properties
24
+ }
25
+ ```
package/package.json CHANGED
@@ -1,19 +1,36 @@
1
1
  {
2
2
  "name": "css-in-props",
3
- "version": "0.0.2",
4
- "description": "",
5
- "main": "index.js",
6
- "scripts": {
7
- "test": "echo \"Error: no test specified\" && exit 1"
3
+ "description": "Utilize props as CSS methods",
4
+ "private": false,
5
+ "author": "symbo.ls",
6
+ "version": "0.8.28",
7
+ "repository": "https://github.com/symbo-ls/smbls",
8
+ "main": "src/index.js",
9
+ "files": [
10
+ "src"
11
+ ],
12
+ "publishConfig": {
13
+ "registry": "https://registry.npmjs.org"
8
14
  },
9
- "repository": {
10
- "type": "git",
11
- "url": "git+https://github.com/symbo-ls/css-in-props.git"
15
+ "scripts": {
16
+ "start": "parcel showcase/index.html",
17
+ "build": "parcel build showcase/index.html --public-url .",
18
+ "deploy": "yarn build && gh-pages -d dist",
19
+ "clean": "rm yarn.lock && rm -rf node_modules && rm -rf dist && rm -rf .cache",
20
+ "reinstall": "rm yarn.lock && rm -rf node_modules/rackai && yarn",
21
+ "bump": "npx np"
12
22
  },
13
- "author": "symbo.ls",
14
- "license": "ISC",
15
- "bugs": {
16
- "url": "https://github.com/symbo-ls/css-in-props/issues"
23
+ "dependencies": {},
24
+ "devDependencies": {
25
+ "@babel/core": "^7.14.6",
26
+ "babel-eslint": "^10.0.3",
27
+ "emotion": "^10.0.27",
28
+ "np": "^7.2.0",
29
+ "parcel-bundler": "^1.12.3",
30
+ "parcel-plugin-svg-sprite": "^1.4.1",
31
+ "standard": "^13.1.0"
17
32
  },
18
- "homepage": "https://github.com/symbo-ls/css-in-props#readme"
33
+ "standard": {
34
+ "parser": "babel-eslint"
35
+ }
19
36
  }
package/src/index.js ADDED
@@ -0,0 +1,2 @@
1
+ 'use strict'
2
+