forked from seansfkelley/nas-download-manager
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 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
51
52
{
"name": "synology-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 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",
"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/*'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/seansfkelley/synology-download-manager.git"
},
"license": "MIT",
"browserslist": [
"since 2017-06"
],
"devDependencies": {
"@types/chai": "^4.0.4",
"@types/classnames": "^2.2.9",
"@types/glob": "^5.0.33",
"@types/lodash": "^4.14.141",
"@types/lodash-es": "^4.14.5",
"@types/mocha": "^2.2.44",
"@types/node": "^12.12.14",
"@types/react": "^16.9.14",
"@types/react-dom": "^16.9.4",
"chai": "^4.1.2",
"glob": "^7.1.2",
"lodash": "^4.17.15",
"mocha": "^4.0.1",
"parcel-bundler": "^1.12.3",
"prettier": "^1.19.1",
"sass": "^1.22.10",
"ts-node": "^3.3.0",
"typescript": "^3.7.2"
},
"dependencies": {
"axios": "^0.19.0",
"chrome-extension-async": "^3.3.2",
"classnames": "^2.2.6",
"lodash-es": "^4.17.14",
"moment": "^2.18.1",
"query-string": "^6.8.2",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"synology-typescript-api": "^0.5.0"
}
}