autoinference 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 +14 -0
- package/index.js +4 -0
- package/package.json +30 -0
package/README.md
ADDED
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
# autoinference (Node.js)
|
|
2
|
+
|
|
3
|
+
Placeholder for the `autoinference` library. Work in progress.
|
|
4
|
+
|
|
5
|
+
```bash
|
|
6
|
+
npm install autoinference
|
|
7
|
+
```
|
|
8
|
+
|
|
9
|
+
```js
|
|
10
|
+
const ai = require('autoinference');
|
|
11
|
+
console.log(ai.version);
|
|
12
|
+
```
|
|
13
|
+
|
|
14
|
+
See https://github.com/autoinference/autoinference for source and roadmap.
|
package/index.js
ADDED
package/package.json
ADDED
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "autoinference",
|
|
3
|
+
"version": "0.0.1",
|
|
4
|
+
"description": "Placeholder for the autoinference library. Work in progress.",
|
|
5
|
+
"main": "index.js",
|
|
6
|
+
"scripts": {
|
|
7
|
+
"test": "echo \"No tests yet\" && exit 0"
|
|
8
|
+
},
|
|
9
|
+
"keywords": [
|
|
10
|
+
"autoinference",
|
|
11
|
+
"inference",
|
|
12
|
+
"ml",
|
|
13
|
+
"ai"
|
|
14
|
+
],
|
|
15
|
+
"author": "autoinference <stephenn.fernandes@gmail.com>",
|
|
16
|
+
"license": "MIT",
|
|
17
|
+
"repository": {
|
|
18
|
+
"type": "git",
|
|
19
|
+
"url": "git+https://github.com/autoinference/autoinference.git"
|
|
20
|
+
},
|
|
21
|
+
"bugs": {
|
|
22
|
+
"url": "https://github.com/autoinference/autoinference/issues"
|
|
23
|
+
},
|
|
24
|
+
"homepage": "https://github.com/autoinference/autoinference#readme",
|
|
25
|
+
"files": [
|
|
26
|
+
"index.js",
|
|
27
|
+
"README.md",
|
|
28
|
+
"LICENSE"
|
|
29
|
+
]
|
|
30
|
+
}
|