@memlab/api 1.0.0 → 1.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 +5 -9
- package/package.json +15 -6
package/README.md
CHANGED
|
@@ -1,11 +1,7 @@
|
|
|
1
|
-
|
|
1
|
+
## memlab API
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
This is the memlab API library. Add this dependency to your project
|
|
4
|
+
if you want to integrate memlab with your continuous testing system.
|
|
4
5
|
|
|
5
|
-
##
|
|
6
|
-
|
|
7
|
-
```
|
|
8
|
-
const api = require('@memlab/api');
|
|
9
|
-
|
|
10
|
-
// TODO: DEMONSTRATE API
|
|
11
|
-
```
|
|
6
|
+
## Full documentation
|
|
7
|
+
https://facebookincubator.github.io/memlab
|
package/package.json
CHANGED
|
@@ -1,13 +1,22 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@memlab/api",
|
|
3
|
-
"version": "1.0.
|
|
4
|
-
"
|
|
5
|
-
"
|
|
6
|
-
"api"
|
|
7
|
-
],
|
|
3
|
+
"version": "1.0.1",
|
|
4
|
+
"license": "MIT",
|
|
5
|
+
"description": "memlab API",
|
|
8
6
|
"author": "Liang Gong <lgong@fb.com>",
|
|
9
7
|
"contributors": [],
|
|
10
|
-
"
|
|
8
|
+
"keywords": [
|
|
9
|
+
"memlab",
|
|
10
|
+
"memory",
|
|
11
|
+
"leak",
|
|
12
|
+
"api",
|
|
13
|
+
"e2e",
|
|
14
|
+
"browser",
|
|
15
|
+
"heap",
|
|
16
|
+
"snapshot",
|
|
17
|
+
"analysis",
|
|
18
|
+
"plugin"
|
|
19
|
+
],
|
|
11
20
|
"main": "dist/index.js",
|
|
12
21
|
"types": "dist/index.d.ts",
|
|
13
22
|
"files": [
|