beamcss 0.1.0
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.
- package/README.md +15 -0
- package/index.js +1 -0
- package/package.json +19 -0
package/README.md
ADDED
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
# beamcss
|
|
2
|
+
|
|
3
|
+
Starter scaffold for an npm package.
|
|
4
|
+
|
|
5
|
+
## Development
|
|
6
|
+
|
|
7
|
+
```sh
|
|
8
|
+
npm run check
|
|
9
|
+
npm run pack:check
|
|
10
|
+
```
|
|
11
|
+
|
|
12
|
+
## Next Steps
|
|
13
|
+
|
|
14
|
+
Replace the placeholder export in `index.js` with the API you want to publish.
|
|
15
|
+
Set a real license in `package.json` before publishing publicly.
|
package/index.js
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
module.exports = {};
|
package/package.json
ADDED
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "beamcss",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"description": "Starter scaffold for the beamcss npm package.",
|
|
5
|
+
"main": "./index.js",
|
|
6
|
+
"exports": {
|
|
7
|
+
".": "./index.js"
|
|
8
|
+
},
|
|
9
|
+
"files": [
|
|
10
|
+
"index.js",
|
|
11
|
+
"README.md"
|
|
12
|
+
],
|
|
13
|
+
"scripts": {
|
|
14
|
+
"check": "node --eval \"require('./index.js')\"",
|
|
15
|
+
"pack:check": "npm pack --dry-run"
|
|
16
|
+
},
|
|
17
|
+
"keywords": [],
|
|
18
|
+
"license": "UNLICENSED"
|
|
19
|
+
}
|