js-tag-manager 3.0.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/LICENSE +21 -0
- package/README.md +38 -0
- package/build/static/js/main.35e0dfd7.js +6788 -0
- package/build/static/js/main.35e0dfd7.js.LICENSE.txt +14 -0
- package/package.json +53 -0
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
/*!
|
|
2
|
+
* Determine if an object is a Buffer
|
|
3
|
+
*
|
|
4
|
+
* @author Feross Aboukhadijeh <https://feross.org>
|
|
5
|
+
* @license MIT
|
|
6
|
+
*/
|
|
7
|
+
|
|
8
|
+
/*!
|
|
9
|
+
* JavaScript Cookie v2.2.1
|
|
10
|
+
* https://github.com/js-cookie/js-cookie
|
|
11
|
+
*
|
|
12
|
+
* Copyright 2006, 2015 Klaus Hartl & Fagner Brack
|
|
13
|
+
* Released under the MIT license
|
|
14
|
+
*/
|
package/package.json
ADDED
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "js-tag-manager",
|
|
3
|
+
"version": "3.0.0",
|
|
4
|
+
"private": false,
|
|
5
|
+
"description": "Manage JS tags",
|
|
6
|
+
"repository": {
|
|
7
|
+
"type": "git",
|
|
8
|
+
"url": "git@github.com:hsksnr/js-tag-manager.git"
|
|
9
|
+
},
|
|
10
|
+
"author": "hsksnr",
|
|
11
|
+
"main": "build/static/js/main.35e0dfd7.js",
|
|
12
|
+
"license": "MIT",
|
|
13
|
+
"scripts": {
|
|
14
|
+
"build": "react-scripts build && rm -rf build/**/**/*.snap",
|
|
15
|
+
"copyNpmrc": "cp ~/.npmrc ./",
|
|
16
|
+
"format": "prettier --config .prettierrc.yaml --write \"**/*.{js,jsx}\"",
|
|
17
|
+
"lint": "eslint . --ignore-path .eslintignore --ext .js,.jsx",
|
|
18
|
+
"lint:fix": "npm run lint -- --fix",
|
|
19
|
+
"lint:staged": "eslint --ignore-path .gitignore --fix",
|
|
20
|
+
"oc": "npm run build && npm run oc:dev",
|
|
21
|
+
"oc:dev": "oc dev ./../",
|
|
22
|
+
"start": "react-scripts start",
|
|
23
|
+
"test": "react-scripts test --env=jsdom",
|
|
24
|
+
"test:coverage": "npm test -- --coverage"
|
|
25
|
+
},
|
|
26
|
+
"husky": {
|
|
27
|
+
"hooks": {
|
|
28
|
+
"pre-commit": "lint-staged"
|
|
29
|
+
}
|
|
30
|
+
},
|
|
31
|
+
"lint-staged": {
|
|
32
|
+
"**/*.{js,jsx}": [
|
|
33
|
+
"npm run lint:staged"
|
|
34
|
+
]
|
|
35
|
+
},
|
|
36
|
+
"jest": {
|
|
37
|
+
"resetMocks": false
|
|
38
|
+
},
|
|
39
|
+
"dependencies": {
|
|
40
|
+
"serialize-javascript": "^3.1.0"
|
|
41
|
+
},
|
|
42
|
+
"devDependencies": {
|
|
43
|
+
"axios": "^0.21.3",
|
|
44
|
+
"axios-retry": "^3.1.9",
|
|
45
|
+
"husky": "^4.2.5",
|
|
46
|
+
"jsonschema": "^1.2.6",
|
|
47
|
+
"lint-staged": "^12.0.2",
|
|
48
|
+
"nock": "^13.1.1",
|
|
49
|
+
"prop-types": "^15.7.2",
|
|
50
|
+
"react": "^16.13.1",
|
|
51
|
+
"react-test-renderer": "^16.13.1"
|
|
52
|
+
}
|
|
53
|
+
}
|