-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
44 lines (44 loc) · 1.15 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
{
"name": "form-autofill-js",
"version": "0.1.4",
"description": "Tool for autofill html forms using a controlled way",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "webpack --config webpack.config.js --mode=production",
"build:dev": "webpack --config webpack.config.js --mode=development",
"prepublish": "npm run build"
},
"repository": {
"type": "git",
"url": "https://github.com/jhta/form-autofill-js"
},
"keywords": [
"autofill",
"form",
"input",
"controlled",
"fill",
"fill-form",
"forms"
],
"author": "Jeison Higuita <[email protected]>",
"license": "MIT",
"dependencies": {
"casual-browserify": "^1.5.19-2",
"path": "^0.12.7"
},
"devDependencies": {
"@babel/cli": "^7.0.0",
"@babel/core": "^7.0.0",
"@babel/polyfill": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"@babel/register": "^7.0.0",
"babel-loader": "^8.0.2",
"babel-plugin-transform-es2015-modules-commonjs": "^6.26.2",
"clean-webpack-plugin": "^0.1.19",
"webpack": "^4.18.0",
"webpack-cli": "^3.1.0"
},
"main": "index.js",
"unpkg": "dist/main.js"
}