-
Notifications
You must be signed in to change notification settings - Fork 72
/
package.json
63 lines (63 loc) · 2.3 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
{
"name": "azad",
"private": true,
"version": "1.15.0",
"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/*",
"build": "node utils/build.js",
"doc": " typedoc --out ./doc/ ./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).zip",
"test": "node --trace-uncaught build-node/nodejs_tests.bundle.js",
"debug_tests": "node --inspect-brk build-node/nodejs_tests.bundle.js",
"winpackage": "utils\\winpackage.cmd"
},
"repository": {
"type": "git",
"url": "git@github.com:philipmulcahy/azad.git"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^6.5.0",
"@typescript-eslint/parser": "^6.5.0",
"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",
"style-loader": "^3.3.2",
"ts-loader": "^9.4.2",
"typedoc": "^0.24.6",
"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",
"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",
"serialize-javascript": "^6.0.1",
"sprintf-js": "^1.1.2",
"sprintf.js": "^0.1.4",
"tsc": "^2.0.4",
"xpath": "0.0.32"
}
}