@rslint/core 0.0.1

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 ADDED
@@ -0,0 +1,8 @@
1
+ # Rslint
2
+
3
+ Rocket Speed Linter.
4
+
5
+ ## Installation
6
+ ```
7
+ $ npm install -D @rslint/core
8
+ ```
package/bin/rslint ADDED
Binary file
package/index.js ADDED
@@ -0,0 +1 @@
1
+ console.log('No JavaScript API yet')
package/package.json ADDED
@@ -0,0 +1,25 @@
1
+ {
2
+ "name": "@rslint/core",
3
+ "version": "0.0.1",
4
+ "main": "index.js",
5
+ "scripts": {
6
+ "build": "go build -o bin/rslint ../../cmd/tsgolint"
7
+ },
8
+ "files": ["bin/"],
9
+ "bin": {
10
+ "rslint": "./bin/rslint"
11
+ },
12
+ "publishConfig": {
13
+ "access": "public"
14
+ },
15
+
16
+ "license": "MIT",
17
+ "description": "rslint cli",
18
+ "publisher": "rslint",
19
+ "keywords": [
20
+ "rslint",
21
+ "linter",
22
+ "typescript",
23
+ "go"
24
+ ]
25
+ }