-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (51 loc) · 1.48 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
{
"private": false,
"name": "s-forms",
"main": "index.js",
"version": "2.0.1",
"description": "Utilities for forms",
"repository": {
"type": "git",
"url": "git+https://github.com/samline/s.forms.git"
},
"keywords": [
"js",
"javascript",
"html",
"html-css",
"html-css-javascript",
"html5",
"es6",
"forms",
"inputs"
],
"author": "Samuel Olvera",
"license": "MIT",
"bugs": {
"url": "https://github.com/samline/s.forms/issues"
},
"homepage": "https://github.com/samline/s.forms#readme",
"scripts": {
"local": "cross-env NODE_ENV=development node_modules/webpack/bin/webpack.js --progress --hide-modules --env=local --config=node_modules/laravel-mix/setup/webpack.config.js",
"staging": "cross-env NODE_ENV=staging node_modules/webpack/bin/webpack.js --progress --hide-modules --env=staging --config=node_modules/laravel-mix/setup/webpack.config.js",
"production": "cross-env NODE_ENV=production node_modules/webpack/bin/webpack.js --progress --hide-modules --env=production --config=node_modules/laravel-mix/setup/webpack.config.js",
"dev": "yarn run local",
"prod": "yarn run production",
"watch": "yarn run local --watch"
},
"engines": {
"node": ">=10",
"npm": ">=6",
"yarn": ">=1.19.0"
},
"browserslist": [
"ie 9",
"last 2 versions"
],
"devDependencies": {
"cross-env": "^6.0.3",
"laravel-mix": "^5.0.0",
"vue-template-compiler": "^2.6.10"
},
"dependencies": {}
}