-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
36 lines (36 loc) · 1.04 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
{
"name": "js-dataform",
"version": "1.0.0",
"description": "Adds javascript support to compose object by deep form structure. The method dataform() uses javascript to serializes a form into a JavaScript Object. With this library you can also specific types to mutate data, appending the type with a colon.",
"main": "src/index.js",
"directories": {
"doc": "doc",
"test": "tests"
},
"scripts": {
"build": "echo ERR! Not implement yet...",
"prepublishOnly": "npm run build",
"test": "mocha"
},
"repository": {
"type": "git",
"url": "git+https://github.com/maviniciuus/js-dataform.git"
},
"keywords": [
"dataform",
"data-form",
"parser",
"form-parser",
"form-to-json"
],
"author": "Marcus Vinícius Mendes Gonçalves <maviniciuus@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/maviniciuus/js-dataform/issues"
},
"homepage": "https://github.com/maviniciuus/js-dataform#readme",
"devDependencies": {
"webpack": "^5.74.0",
"webpack-cli": "^4.10.0"
}
}