This repository has been archived by the owner on Mar 15, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
79 lines (79 loc) · 2.59 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
{
"name": "robinhood-mint-sync-chrome",
"version": "3.4.1",
"repository": {
"type": "git",
"url": "git+https://github.com/pkmnct/robinhood-mint-sync-chrome.git"
},
"author": "George W. Walker",
"license": "MIT",
"bugs": {
"url": "https://github.com/pkmnct/robinhood-mint-sync-chrome/issues"
},
"homepage": "https://github.com/pkmnct/robinhood-mint-sync-chrome#readme",
"dependencies": {
"jquery": "^3.5.1",
"noty": "^3.2.0-beta"
},
"devDependencies": {
"@babel/core": "^7.12.10",
"@babel/preset-env": "^7.12.11",
"@babel/preset-typescript": "^7.12.7",
"@types/chrome": "0.0.128",
"@types/jest": "^26.0.20",
"@types/selenium-webdriver": "^4.0.11",
"@typescript-eslint/eslint-plugin": "^4.13.0",
"@typescript-eslint/parser": "^4.13.0",
"babel-jest": "^26.6.3",
"bestzip": "^2.1.7",
"chromedriver": "^88.0.0",
"copy-webpack-plugin": "^7.0.0",
"cross-env": "^7.0.3",
"cross-var": "^1.1.0",
"eslint": "^7.18.0",
"eslint-config-prettier": "^7.1.0",
"eslint-plugin-prettier": "^3.3.1",
"husky": "^4.3.8",
"jest": "^26.6.3",
"lint-staged": "^10.5.3",
"prettier": "^2.2.1",
"rimraf": "^3.0.2",
"selenium-webdriver": "^4.0.0-alpha.8",
"ts-loader": "^8.0.14",
"typescript": "^4.1.3",
"unzipper": "^0.10.11",
"webpack": "^5.15.0",
"webpack-cli": "^4.3.1",
"webpack-dev-server": "^3.11.2"
},
"scripts": {
"watch": "webpack --config webpack/webpack.dev.js --watch",
"docs": "webpack serve --config webpack/webpack.docs.js",
"prebuild": "npm run clean",
"build": "webpack --config webpack/webpack.prod.js",
"build:docs": "webpack --config webpack/webpack.docs.js",
"clean": "rimraf dist",
"prerelease": "npm run clean",
"release": "npm run build",
"zip": "cd dist/extension && cross-var bestzip ../$npm_package_name@$npm_package_version.zip * && cd ../..",
"postrelease": "rimraf *.zip && npm run zip",
"eslint": "eslint src/**",
"eslint:fix": "eslint --fix --max-warnings 0 src/**",
"prettier": "prettier --check src/**",
"prettier:fix": "prettier --write src/**",
"get:stellar": "cross-env NODE_TLS_REJECT_UNAUTHORIZED=0 node ./get-stellar.js",
"postinstall": "npm run get:stellar",
"manifest:update": "node manifest-helper.js",
"postversion": "npm run manifest:update && git add . && git commit -m \"Update manifest.json\"",
"test": "jest"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/*": "prettier --write",
"*.ts": "eslint --cache --fix --max-warnings 0"
}
}