-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
54 lines (54 loc) · 1.47 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
44
45
46
47
48
49
50
51
52
53
54
{
"author": {
"email": "[email protected]",
"name": "Richard Huang"
},
"description": "A utility to fill out web form and mutate field data programmatically.",
"devDependencies": {
"eslint": "^7.20.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^24.1.5",
"jest": "^26.6.3",
"jsdoc-to-markdown": "^6.0.1",
"terser": "^5.6.0"
},
"homepage": "https://github.com/rickypc/form-mutator#readme",
"jest": {
"clearMocks": true,
"collectCoverage": true,
"collectCoverageFrom": [
"index.js"
],
"coverageDirectory": "./coverage/",
"errorOnDeprecated": true,
"logHeapUsage": true,
"testEnvironment": "node"
},
"keywords": [
"fill out",
"form",
"field",
"web",
"data",
"mutator",
"utility",
"programmatically",
"automation"
],
"license": "MPL-2.0",
"main": "index.js",
"name": "form-mutator",
"repository": {
"type": "git",
"url": "[email protected]:rickypc/form-mutator.git"
},
"runkitExampleFilename": "example.js",
"scripts": {
"docs": "jsdoc2md -t .readme.hbs index.js > README.md",
"lint": "eslint __tests__/** index.js; exit 0",
"terser": "echo \"/*! $npm_package_name v$npm_package_version | (c) $npm_package_author_name <$npm_package_author_email> | $npm_package_license */\n$(terser -cm -- index.js)\" > $npm_package_name.min.js",
"test": "jest"
},
"version": "4.0.7"
}