-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.27 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.27 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
{
"name": "jsonpickle",
"version": "1.2.0",
"description": "Javascript reinterpretation of Python jsonpickle to allow reading and (to a lesser extent) writing JSON objects",
"type": "module",
"main": "build/jsonpickle.min.js",
"scripts": {
"build": "webpack",
"watch": "webpack --watch",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cuthbertLab/jsonpickleJS.git"
},
"keywords": [
"json",
"pickle",
"python",
"jsonpickle"
],
"author": "Michael Scott Cuthbert",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/cuthbertLab/jsonpickleJS/issues"
},
"homepage": "https://github.com/cuthbertLab/jsonpickleJS#readme",
"devDependencies": {
"@babel/core": "^7.28.0",
"@babel/plugin-transform-export-namespace-from": "^7.27.1",
"@babel/plugin-transform-object-assign": "^7.27.1",
"@babel/preset-env": "^7.28.0",
"babel-loader": "^10.0.0",
"core-js": "^3.45.0",
"eslint": "^9.32.0",
"eslint-config-airbnb-extended": "^2.1.2",
"eslint-plugin-import": "^2.32.0",
"eslint-webpack-plugin": "^5.0.2",
"globals": "^16.3.0",
"read-pkg-up": "^10.1.0",
"webpack": "^5.101.0",
"webpack-cli": "^6.0.1"
}
}