-
Notifications
You must be signed in to change notification settings - Fork 46
/
package.json
50 lines (50 loc) · 1.93 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
{
"name": "nas-download-manager",
"version": "0.0.0",
"description": "An open source browser extension for adding/managing download tasks to your Synology DiskStation.",
"scripts": {
"test": "TS_NODE_PROJECT=test/tsconfig-test.json mocha --require ts-node/register 'test/**/*.{ts,tsx}'",
"lint": "prettier --check src/**/* && tsc -p src --noemit",
"watch": "parcel watch --no-hmr src/content/index.ts src/background/index.ts src/settings/index.tsx src/popup/index.tsx",
"build": "rm -rf dist && parcel build src/content/index.ts src/background/index.ts src/settings/index.tsx src/popup/index.tsx --no-source-maps",
"zip": "rm -rf addon.zip && zip -r addon.zip . -i 'dist/*' -i 'html/*' -i 'icons/*' -i 'vendor/*' -i '_locales/*' -i 'manifest.json' -x '**/*.map' -x '**/.DS_Store'",
"zip-sources": "rm -rf sources.zip && zip -r sources.zip . -x '*.zip' -x 'dist/*' -x 'node_modules/*' -x '**/.DS_Store' -x '.git/*' -x '.cache/*' -x '.vscode/*' -x '.github/*' -x '.circleci/*'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/seansfkelley/nas-download-manager.git"
},
"license": "MIT",
"browserslist": [
"since 2021-06"
],
"devDependencies": {
"@types/chai": "^4.0.4",
"@types/glob": "^5.0.33",
"@types/lodash": "^4.14.141",
"@types/mocha": "^2.2.44",
"@types/node": "^14.14.41",
"@types/react": "^17.0.34",
"@types/react-dom": "^17.0.0",
"chai": "^4.1.2",
"glob": "^7.1.2",
"mocha": "^4.0.1",
"parcel-bundler": "^1.12.4",
"prettier": "^2.2.1",
"sass": "^1.22.10",
"semver": "^7.3.4",
"ts-node": "^9.1.1",
"typescript": "^5.2.2"
},
"dependencies": {
"classnames": "^2.3.1",
"lodash": "^4.17.21",
"moment": "^2.18.1",
"query-string": "^6.8.2",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-textarea-autosize": "^8.3.2",
"webextension-polyfill": "^0.7.0"
},
"packageManager": "[email protected]"
}