-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 3.57 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 3.57 KB
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
{
"name": "secret-manager-service",
"version": "0.0.1",
"description": "This is the shit!",
"scripts": {
"build-coffee": "coffee -o toolset/build/js/ -c sources/source/*/*.coffee",
"watch-coffee": "coffee -o toolset/build/js/ -cw sources/source/*/*.coffee",
"build-live": "lsc -o toolset/build/js/ -c sources/source/*/*.ls",
"watch-live": "lsc -o toolset/build/js/ -cw sources/source/*/*.ls",
"link-all-js": "toolset/thingy-build-system/link-all-js.js",
"ncu-update": "ncu -u",
"reinstall": "npm install",
"update-packages": "run-s -ns ncu-update reinstall",
"module-gen": "thingy-module-gen --",
"sync-allmodules": "thingy-allmodules-sync",
"add-module": "run-s -ns \"module-gen {*}\" sync-allmodules --",
"sourcemodulecreate": "cd sources/source && thingymodulecreate",
"use-sub-sourcemodule": "run-s \"sourcemodulecreate submodule,{1},use,{2}\" --",
"merge-sub-sourcemodule": "run-s -ns \"sourcemodulecreate submodule,{1},merge,{2}\" --",
"merge-dir-sourcemodule": "run-s -ns \"sourcemodulecreate directory,{1},merge,{2}\" --",
"sourcemodule-to-sub": "run-s \"sourcemodulecreate submodule,{1}\" --",
"sourcemodule-to-dir": "run-s \"sourcemodulecreate directory,{1}\" --",
"push": "thingysync push --message",
"pull": "thingysync pull",
"postinstall": "npm run initialize-thingy",
"initialize-thingy": "run-s -ns create-build-directories copy-ressources create-cert build",
"prepare-webpack": "run-s rebuild-webpack-config patch-stuff",
"bundle": "webpack-cli --config .build-config/webpack-deploy.config.js",
"watch-bundle": "webpack-cli --config .build-config/webpack-watch.config.js",
"release": "run-s -ns initialize-thingy release-script",
"watch": "run-p -rns watch-live watch-coffee watch-bundle",
"test": "run-s -ns build test-run",
"build": "run-s -ns prepare-webpack link-all-js build-live build-coffee bundle",
"test-run": "cd output && node service.js",
"create-cert": "toolset/thingy-build-system/service/create-certificates.sh",
"update-tools": "toolset/thingy-build-system/service/update-tools.sh",
"rebuild-webpack-config": "toolset/thingy-build-system/service/rebuild-webpack-config.js",
"release-script": "toolset/thingy-build-system/service/release-script.sh",
"create-build-directories": "toolset/thingy-build-system/service/create-build-directories.sh",
"patch-stuff": "sources/patches/patch-stuff.sh",
"copy-ressources": "sources/ressources/copyscript.sh"
},
"repository": {
"type": "git",
"url": "git+https://github.com/JhonnyJason/secret-manager-service.git"
},
"author": "Lenard Frommelt",
"license": "Unlicense",
"bugs": {
"url": "https://github.com/JhonnyJason/secret-manager-service/issues"
},
"homepage": "https://github.com/JhonnyJason/secret-manager-service#readme",
"dependencies": {
"coffeescript": "^2.7.0",
"livescript": "^1.6.0",
"npm-check-updates": "^16.3.15",
"npm-run-all": "^4.1.5",
"thingy-allmodules-sync": "^0.2.0",
"thingy-module-gen": "^0.1.6",
"thingymodulecreate": "^0.1.8",
"thingysync": "^0.1.2",
"thingy-debug": "^0.0.1",
"webpack": "^5.74.0",
"webpack-cli": "^4.10.0",
"cached-persistentstate": "^0.0.1",
"secret-manager-crypto-utils": "^0.1.1",
"thingy-sci-base": "^0.0.7",
"thingy-network-base": "^0.0.4"
}
}