This repository has been archived by the owner on Nov 15, 2024. It is now read-only.
forked from nextcloud/appstore
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.63 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": "nextcloudappstore",
"version": "1.0.0",
"description": "Nextcloud App Store",
"main": "index.js",
"directories": {
"doc": "docs"
},
"dependencies": {
"blazy": "^1.8.2",
"bootstrap": "^3.3.7",
"bootstrap.native": "^2.0.19",
"highlight.js": "^10.4.1",
"markdown-it": "^10.0.0",
"screenfull": "^5.0.0"
},
"devDependencies": {
"@types/blazy": "^1.5.30",
"@types/highlight.js": "^9.12.1",
"@types/jasmine": "^3.0.0",
"@types/markdown-it": "0.0.9",
"@types/screenfull": "^4.1.0",
"copy-webpack-plugin": "^8.1.0",
"jasmine-core": "^3.0.0",
"karma": "^5.0.0",
"karma-firefox-launcher": "^1.0.1",
"karma-jasmine": "^2.0.1",
"karma-webpack": "^5.0.0",
"ts-loader": "^6.0.4",
"typescript": "^3.0.1",
"webpack": "^5.27.2",
"webpack-cli": "^4.5.0"
},
"scripts": {
"test": "./node_modules/karma/bin/karma start --single-run",
"build": "NODE_ENV=production ./node_modules/.bin/webpack --progress --mode production",
"watch": "./node_modules/.bin/webpack --progress --watch --mode development",
"watch-test": "./node_modules/karma/bin/karma start"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nextcloud/appstore.git"
},
"keywords": [
"app",
"store",
"nextcloud",
"cloud",
"django",
"python"
],
"author": "Nextcloud Community",
"license": "AGPL-3.0",
"bugs": {
"url": "https://github.com/nextcloud/appstore/issues"
},
"homepage": "https://github.com/nextcloud/appstore#readme",
"private": true,
"engines": {
"node": "^16.0.0",
"npm": "^7.0.0 || ^8.0.0"
}
}