-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 834 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 834 Bytes
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
{
"name": "form-json",
"version": "2.1.0",
"description": "Converts an HTML form object to JavaScript object.",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"build": "tacer-script build",
"test": "tacer-script test",
"test:watch": "tacer-script test:watch",
"preversion": "npm run test"
},
"repository": {
"type": "git",
"url": "https://github.com/IdanLoo/form-json"
},
"keywords": [
"form",
"json"
],
"author": "Idan Loo <im@siwei.lu>",
"license": "MIT",
"devDependencies": {
"@types/get-value": "^3.0.2",
"@types/jest": "^25.2.3",
"@types/jsdom": "^12.2.4",
"@types/set-value": "^2.0.0",
"jsdom": "^15.1.1",
"tacer-template-lib": "^0.5.1"
},
"dependencies": {
"get-value": "^3.0.1",
"set-value": "^4.1.0"
}
}