-
Notifications
You must be signed in to change notification settings - Fork 91
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.98 KB
/
package.json
File metadata and controls
78 lines (78 loc) · 2.98 KB
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
{
"name": "azad",
"private": true,
"version": "1.16.20",
"description": "This extension extracts order history from your Amazon account.",
"license": "Apache-2.0",
"main": "background.js",
"scripts": {
"init": "npm install --init",
"clean": "rm -rf azad*.zip build/* build-node/* src/generated/*",
"generate_code": "node utils/generate_code.js",
"build": "npm run clean; node utils/generate_code.js; npm run lint && node utils/build.js",
"doc": "npx typedoc --entryPointStrategy Expand src/js",
"lint": "tsc --strict --alwaysStrict --noEmit --noUnusedParameters --noImplicitReturns --noImplicitOverride --noImplicitThis --noFallthroughCasesInSwitch",
"eslint": "eslint --ignore-path .gitignore --ext .js,.ts .",
"package": "utils/package.sh",
"private_package": "npm run package; cp azad.zip azad_$(git log -1 | grep commit | sed 's/^commit //' | cut -c 1-8 | head -1).zip",
"test": "npm run test_order && npm run test_jest",
"test_order": "node --trace-uncaught build-node/nodejs_tests.bundle.js",
"debug_order_tests": "node --inspect-brk build-node/nodejs_tests.bundle.js",
"test_jest": "npx jest",
"debug_jest": "node --inspect-brk node_modules/.bin/jest --runInBand",
"winpackage": "utils\\winpackage.cmd"
},
"repository": {
"type": "git",
"url": "git@github.com:philipmulcahy/azad.git"
},
"devDependencies": {
"@types/jest": "^29.5.14",
"@types/node-forge": "^1.3.1",
"@types/urlsafe-base64": "^1.0.31",
"@typescript-eslint/eslint-plugin": "^6.5.0",
"@typescript-eslint/parser": "^6.5.0",
"cheerio": "^1.1.2",
"clean-webpack-plugin": "^4.0.0",
"copy-webpack-plugin": "^11.0.0",
"css-loader": "^6.7.3",
"eslint": "^8.48.0",
"file-loader": "^6.2.0",
"html-loader": "^4.2.0",
"html-webpack-plugin": "^5.5.1",
"jest": "^29.7.0",
"style-loader": "^3.3.2",
"ts-jest": "^29.3.4",
"ts-loader": "^9.4.2",
"typedoc": "^0.24.8",
"typescript": "^5.0.4",
"webpack": "^5.81.0",
"webpack-cli": "^5.0.2",
"write-file-webpack-plugin": "^4.5.1"
},
"dependencies": {
"@types/chrome": "0.0.233",
"@types/jquery": "^3.5.16",
"@types/moment": "^2.13.0",
"@types/node": "^18.16.1",
"@types/sprintf-js": "^1.1.2",
"@types/webpack": "^5.28.1",
"antlr4": "^4.13.2",
"buffer": "^6.0.3",
"datatables": "^1.10.18",
"extpay": "^3.0.7",
"jquery": "^3.6.4",
"jsdom": "^21.1.1",
"lzjs": "^1.3.0",
"mocha": "^10.2.0",
"moment": "^2.29.4",
"node-forge": "^1.3.1",
"serialize-javascript": "^6.0.1",
"sprintf-js": "^1.1.2",
"sprintf.js": "^0.1.4",
"tsc": "^2.0.4",
"urlsafe-base64": "^1.0.0",
"uuid": "^11.1.0",
"xpath": "0.0.32"
}
}