1+ {
2+ "name" : " livewire-devtools" ,
3+ "version" : " 1.0.0" ,
4+ "description" : " devtools for Livewire!" ,
5+ "main" : " index.js" ,
6+ "scripts" : {
7+ "dev" : " cross-env PORT=8100 npm run dev:shell" ,
8+ "dev:shell" : " cd shells/dev && webpack-dev-server --inline --hot --no-info" ,
9+ "dev:chrome" : " cd shells/chrome && webpack --watch --hide-modules" ,
10+ "lint" : " eslint src --ext=js,vue && eslint shells/chrome/src && eslint shells/dev/src && eslint shells/electron/src" ,
11+ "build" : " cd shells/chrome && cross-env NODE_ENV=production webpack --progress --hide-modules" ,
12+ "run:firefox" : " web-ext run -s shells/chrome -a dist -i src" ,
13+ "zip" : " npm run zip:chrome && npm run zip:firefox" ,
14+ "zip:chrome" : " cd shells && zip -r -FS ../dist/chrome.zip chrome -x *src/* -x *webpack.config.js" ,
15+ "zip:firefox" : " web-ext build -s shells/chrome -a dist -i src --overwrite-dest" ,
16+ "sign:firefox" : " cross-env web-ext sign --api-key=$LIVEWIRE_DEVTOOLS_AMO_KEY --api-secret=$LIVEWIRE_DEVTOOLS_AMO_SECRET -s shells/chrome -a dist -i src --id='{b432f069-95af-4ac7-8306-a5476489c281}'" ,
17+ "release" : " node release.js && npm run test && npm run build && npm run zip" ,
18+ "release:beta" : " cross-env RELEASE_CHANNEL=beta npm run release && npm run sign:firefox" ,
19+ "test" : " npm run lint && npm run test:e2e" ,
20+ "test:e2e" : " cross-env PORT=4040 start-server-and-test dev:shell http://localhost:4040 test:e2e:run" ,
21+ "test:e2e:run" : " cypress run --config baseUrl=http://localhost:4040" ,
22+ "test:open" : " cypress open --config baseUrl=http://localhost:8100"
23+ },
24+ "repository" : {
25+ "type" : " git" ,
26+ "url" : " git+https://github.com/beyondcode/livewire-devtools.git"
27+ },
28+ "keywords" : [
29+ " livewire" ,
30+ " devtools"
31+ ],
32+ "author" : " Marcel Pociot" ,
33+ "license" : " MIT" ,
34+ "bugs" : {
35+ "url" : " https://github.com/beyondcode/livewire-devtools/issues"
36+ },
37+ "homepage" : " https://github.com/beyondcode/livewire-devtools#readme" ,
38+ "dependencies" : {
39+ "@vue/ui" : " ^0.5.1" ,
40+ "circular-json-es6" : " ^2.0.1" ,
41+ "lodash.debounce" : " ^4.0.8" ,
42+ "lodash.groupby" : " ^4.6.0" ,
43+ "uglifyjs-webpack-plugin" : " ^1.1.4" ,
44+ "vue" : " ^2.5.13" ,
45+ "vue-router" : " ^3.0.1" ,
46+ "vuex" : " ^3.0.1"
47+ },
48+ "devDependencies" : {
49+ "buble" : " ^0.19.0" ,
50+ "buble-loader" : " ^0.4.1" ,
51+ "cross-env" : " ^5.1.3" ,
52+ "css-loader" : " ^0.28.7" ,
53+ "cypress" : " ^3.0.2" ,
54+ "eslint" : " ^5.2.0" ,
55+ "eslint-config-standard" : " ^11.0.0" ,
56+ "eslint-plugin-cypress" : " ^2.0.1" ,
57+ "eslint-plugin-import" : " ^2.13.0" ,
58+ "eslint-plugin-node" : " ^7.0.1" ,
59+ "eslint-plugin-promise" : " ^3.8.0" ,
60+ "eslint-plugin-standard" : " ^3.1.0" ,
61+ "eslint-plugin-vue" : " next" ,
62+ "file-loader" : " ^1.1.6" ,
63+ "friendly-errors-webpack-plugin" : " ^1.6.1" ,
64+ "inquirer" : " ^5.0.0" ,
65+ "launch-editor-middleware" : " ^2.1.0" ,
66+ "raw-loader" : " ^0.5.1" ,
67+ "semver" : " ^5.4.1" ,
68+ "start-server-and-test" : " ^1.5.0" ,
69+ "stylus" : " ^0.54.5" ,
70+ "stylus-loader" : " ^3.0.1" ,
71+ "url-loader" : " ^0.6.2" ,
72+ "vue-loader" : " ^15.0.0-beta.1" ,
73+ "vue-template-compiler" : " ^2.5.13" ,
74+ "webpack" : " ^3.10.0" ,
75+ "webpack-dev-server" : " ^2.9.7" ,
76+ "webpack-merge" : " ^4.1.2"
77+ },
78+ "engines" : {
79+ "node" : " >=8.10"
80+ }
81+ }
0 commit comments