-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
103 lines (103 loc) · 2.7 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
{
"name": "hereditas",
"version": "0.2.2",
"author": "Alessandro Segala @ItalyPaleAle",
"bin": {
"hereditas": "./bin/run"
},
"bugs": "https://github.com/ItalyPaleAle/hereditas/issues",
"dependencies": {
"@fullhuman/postcss-purgecss": "2.3.0",
"@oclif/command": "1.8.0",
"@oclif/config": "1.17.0",
"@oclif/plugin-help": "3.2.0",
"argon2-browser": "1.14.0",
"auth0": "2.27.1",
"autoprefixer": "9.8.6",
"base64-loader": "1.0.0",
"buffer-equal-constant-time": "1.0.1",
"buffer-xor": "2.0.2",
"cli-ux": "5.4.10",
"copy-webpack-plugin": "6.0.3",
"css-loader": "4.2.1",
"html-webpack-plugin": "4.3.0",
"idtoken-verifier": "2.0.3",
"lodash.clonedeep": "4.5.0",
"lodash.defaultsdeep": "4.6.1",
"marked": "1.1.1",
"mini-css-extract-plugin": "0.10.0",
"path-to-regexp": "6.1.0",
"postcss": "7.0.32",
"postcss-import": "12.0.1",
"postcss-loader": "3.0.0",
"qs": "6.9.4",
"smhelper": "1.2.4",
"style-loader": "1.2.1",
"svelte": "3.24.1",
"svelte-loader": "2.13.6",
"svelte-spa-router": "2.2.0",
"tailwindcss": "1.7.1",
"webpack": "4.44.1",
"webpack-subresource-integrity": "1.4.1"
},
"devDependencies": {
"@oclif/dev-cli": "1.22.2",
"eslint": "7.7.0",
"eslint-plugin-html": "6.0.3",
"eslint-plugin-svelte3": "2.7.3",
"globby": "11.0.1",
"mustache": "4.0.1",
"serve": "11.3.2"
},
"engines": {
"node": ">=10.0.0"
},
"files": [
"/app",
"/auth0",
"/bin",
"/cli",
"/npm-shrinkwrap.json",
"/oclif.manifest.json",
"/vendor"
],
"homepage": "https://github.com/ItalyPaleAle/hereditas",
"keywords": [
"digital legacy",
"cli",
"generator"
],
"license": "GPL-3.0-only",
"main": "cli/index.js",
"oclif": {
"commands": "./cli/commands",
"bin": "hereditas",
"plugins": [
"@oclif/plugin-help"
],
"topics": {
"auth0": {
"description": "interact with Auth0 to configure the Hereditas client"
},
"url": {
"description": "manage URLs where the Hereditas box will be deployed, which are used for OAuth callbacks"
},
"user": {
"description": "manage the list of owners and users of the Hereditas box"
},
"wait-time": {
"description": "manage the waitTime setting of the hereditas.json file"
},
"webhook": {
"description": "manage the webhook setting of the hereditas.json file"
}
}
},
"repository": "ItalyPaleAle/hereditas",
"scripts": {
"postpack": "rm -f oclif.manifest.json",
"eslint": "npx eslint -c .eslintrc.js --ext .js,.svelte,.html .",
"prepack": "oclif-dev manifest",
"test": "echo NO TESTS"
}
}