-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.46 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
{
"name": "remoteform",
"version": "0.0.6",
"description": "Ajaxify forms easily",
"main": "dist/remoteform.js",
"scripts": {
"test": "mocha test/**/*.spec.js --require @babel/register",
"lint": "./node_modules/.bin/eslint src",
"clean": "rm -rf dist",
"build": "npm run clean && cross-env NODE_ENV=production webpack",
"watch": "npm run clean && webpack --config ./webpack.config.js -w",
"dev": "./node_modules/http-dev-server/bin/http-dev-server -f ./http.config.js",
"start": "npm run watch & npm run dev"
},
"keywords": [
"ajax",
"form"
],
"author": "Rafael Nowrotek",
"license": "MIT",
"devDependencies": {
"@babel/cli": "^7.4.4",
"@babel/core": "^7.4.4",
"@babel/plugin-transform-runtime": "^7.4.4",
"@babel/plugin-transform-spread": "^7.2.2",
"@babel/preset-env": "^7.4.4",
"@babel/register": "^7.4.4",
"@babel/runtime": "^7.4.4",
"babel-loader": "^8.0.5",
"cross-env": "^5.2.0",
"eslint": "^5.16.0",
"extract-loader": "^3.1.0",
"fetch-mock": "^7.3.3",
"file-loader": "^3.0.1",
"formidable": "^1.2.1",
"html-loader": "^0.5.5",
"http-dev-server": "^0.2.3",
"isomorphic-fetch": "^2.2.1",
"jsdom": "^15.0.0",
"mocha": "^6.1.4",
"webpack": "^4.31.0",
"webpack-cli": "^3.3.2",
"mdn-polyfills": "^5.16.0",
"url-polyfill": "^1.1.5"
},
"dependencies": {
"get-form-data": "^2.0.0",
"qs": "^6.7.0",
"unique-selector": "^0.3.6"
}
}