forked from marioizquierdo/jquery.serializeJSON
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.51 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.51 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
45
46
47
48
49
50
51
52
53
{
"name": "@syneto/serializejson",
"main": "dist/serializejson.js",
"version": "1.0.0",
"description": "Method to serialize a form into a JavaScript Object, using the same format as the default Ruby on Rails request params",
"homepage": "https://github.com/SynetoNet/serializeJSON",
"author": "Nicolas Vannier",
"license": "MIT",
"scripts": {
"test": "jest",
"build": "webpack --mode=production",
"lint": "./node_modules/.bin/eslint src/",
"prepare": "husky",
"release:major": "npm version major",
"release:minor": "npm version minor",
"release:patch": "npm version patch",
"version": "npm run build:prod && git add dist",
"postversion": "git push && git push --tags"
},
"jest": {
"testEnvironment": "jsdom"
},
"repository": {
"type": "git",
"url": "https://github.com/SynetoNet/serializeJSON.git"
},
"keywords": [
"form-serialization",
"form-to-json",
"html-to-json",
"form",
"json"
],
"bugs": {
"url": "https://github.com/SynetoNet/serializeJSON/issues"
},
"devDependencies": {
"@babel/core": "^7.24.3",
"@babel/eslint-parser": "^7.24.1",
"@babel/plugin-transform-runtime": "^7.24.3",
"@babel/preset-env": "^7.24.3",
"babel-loader": "^9.1.3",
"clean-webpack-plugin": "^4.0.0",
"core-js": "^3.36.1",
"eslint": "^8.57.0",
"eslint-webpack-plugin": "^4.1.0",
"husky": "^9.0.11",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"webpack": "^5.91.0",
"webpack-cli": "^5.1.4"
}
}