-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
43 lines (43 loc) · 1.21 KB
/
package.json
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
{
"name": "jsonpickle",
"version": "1.1.2",
"description": "Javascript reinterpretation of Python jsonpickle to allow reading and (to a lesser extent) writing JSON objects",
"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.10.2",
"@babel/plugin-proposal-export-namespace-from": "^7.10.1",
"@babel/plugin-transform-object-assign": "^7.10.1",
"@babel/preset-env": "^7.10.2",
"babel-loader": "^8.1.0",
"core-js": "^3.6.5",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-plugin-import": "^2.21.2",
"webpack": "^5.95.0",
"webpack-cli": "^5.1.4"
},
"dependencies": {
"regenerator-runtime": "^0.13.5"
}
}