-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.85 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
55
56
57
58
59
60
61
62
{
"name": "gmodal",
"version": "3.1.1",
"description": "a modal",
"author": "Tom Noogen",
"main": "lib/gmodal.min.js",
"license": "MIT",
"keywords": [
"modal",
"bootstrap",
"javascript",
"pure",
"css",
"simple",
"overlay",
"jquery"
],
"repository": "git://github.com/niiknow/gmodal.git",
"scripts": {
"watch": "cross-env NODE_ENV=development node_modules/webpack/bin/webpack.js --watch --progress --hide-modules --config=node_modules/laravel-mix/setup/webpack.config.js",
"watch-poll": "npm run watch -- --watch-poll",
"build": "npm run production",
"production": "cross-env NODE_ENV=production node_modules/webpack/bin/webpack.js --no-progress --hide-modules --config=node_modules/laravel-mix/setup/webpack.config.js",
"test": "cross-env NODE_ENV=test node_modules/.bin/nyc node_modules/.bin/ava",
"watch-test": "npm run test -- --watch",
"lint": "eslint --ext .js,.vue src/",
"lint-fix": "eslint --fix --ext .js,.vue src/",
"check-outdated": "npm outdated"
},
"dependencies": {},
"devDependencies": {
"@babel/core": "^7.10.5",
"@babel/preset-env": "^7.10.4",
"ava": "^2.3.0",
"babel-eslint": "^10.1.0",
"browser-env": "^3.3.0",
"browser-sync": "^2.26.10",
"browser-sync-webpack-plugin": "^2.0.1",
"component-emitter": "github:component/emitter",
"cross-env": "^5.2.1",
"domify": "github:component/domify",
"eslint": "^5.16.0",
"eslint-friendly-formatter": "^4.0.1",
"eslint-loader": "^3.0.4",
"file-loader": "^3.0.1",
"laravel-mix": "^4.1.2",
"nyc": "^14.1.1",
"raw-loader": "^3.1.0",
"smart-banner-webpack-plugin": "^3.0.1",
"vue-template-compiler": "^2.6.11"
},
"browserslist": [
"> 1%",
"last 2 versions",
"not ie <= 8"
],
"ava": {
"require": [
"./tests/_setup-browser-env.js"
]
}
}