-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
87 lines (87 loc) · 2.77 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "scraper-dashboard",
"version": "0.0.1",
"version_name": "Closed Beta 0.0.1",
"private": true,
"description": "Scraper Dashboard",
"main": "index.js",
"scripts": {
"test": "npx eslint --ext .js,.vue src && npx ava",
"test:build": "npx web-ext lint",
"eslint": "npx eslint --ext .js,.vue src",
"libraries": "mkdir -p src/web_accessible_resources && yarn licenses --silent generate-disclaimer > src/web_accessible_resources/libraries.txt",
"package": "npx web-ext build",
"webpack:build:chromium": "npx webpack --progress --config webpack.chromium.js",
"webpack:build:firefox": "npx webpack --progress --config webpack.firefox.js",
"webpack:dev:firefox": "npx webpack --progress --watch --config webpack.firefox.dev.js",
"webpack:dev:chromium": "npx webpack --progress --watch --config webpack.chromium.dev.js",
"integration:chromium": "npm run clean && npm run webpack:build:chromium && npm run package && npx nightwatch --env chromium",
"integration:firefox": "npm run clean && npm run webpack:build:firefox && npm run package && npx nightwatch --env firefox",
"clean": "rm -r dist artifacts || true"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gary-kim/scraper-dashboard.git"
},
"author": "TO SET",
"license": "UNLICENSED",
"bugs": {
"url": "https://github.com/gary-kim/scraper-dashboard/issues"
},
"homepage": "https://github.com/gary-kim/scraper-dashboard#readme",
"devDependencies": {
"@babel/core": "^7.6.4",
"@babel/register": "^7.6.2",
"ava": "^2.4.0",
"babel-loader": "^8.0.6",
"chromedriver": "^78.0.1",
"copy-webpack-plugin": "^5.0.4",
"css-loader": "^3.2.0",
"eslint": "^6.5.1",
"eslint-plugin-vue": "^5.2.3",
"geckodriver": "^1.19.1",
"jszip": "^2.6.1",
"less": "^3.10.3",
"less-loader": "^5.0.0",
"nightwatch": "^1.2.4",
"rewire": "^4.0.1",
"vue": "^2.6.10",
"vue-loader": "^15.7.1",
"vue-template-compiler": "^2.6.10",
"web-ext": "^3.1.1",
"webextension-polyfill": "^0.5.0",
"webpack": "^4.41.2",
"webpack-cli": "^3.3.9",
"webpack-merge": "^4.2.2"
},
"dependencies": {
"@babel/polyfill": "^7.8.3",
"@babel/preset-env": "^7.6.3",
"babel-eslint": "^10.0.3",
"core-js": "^3.6.4",
"css-selector-generator": "^1.2.0",
"get-in-range": "^0.2.4",
"get-key-range": "^1.0.1",
"jquery": "^3.4.1",
"moment": "^2.24.0",
"mousetrap": "^1.6.3",
"v-viewer": "^1.5.1",
"vue-material": "^1.0.0-beta-11",
"vuedraggable": "^2.23.2"
},
"webExt": {
"sourceDir": "dist",
"artifactsDir": "artifacts",
"lint": {
"selfHosted": true
}
},
"ava": {
"files": [
"**/__tests__/*.js"
],
"require": [
"@babel/register"
]
}
}