-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.69 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.69 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
{
"name": "@scramjet/reference-apps",
"version": "0.26.1",
"private": true,
"description": "A collection of reference applications for Scramjet platform.",
"main": "index.js",
"bic": {
"only": [
"packages"
],
"skip": [
"template"
]
},
"bin": {
"scramjet-transform-hub": "dist/sth/bin/hub.js"
},
"scripts": {
"build": "yarn build:refapps",
"prebuild:refapps": "scripts/run-script.js build:refapps:only",
"build:refapps": "scripts/build-all.js --dirs ts/* --config-name=tsconfig.json",
"postbuild:refapps": "scripts/run-script.js postbuild:refapps",
"lint": "npx eslint ./ --ext .ts --ext .js --cache --cache-strategy=content",
"clean": "scripts/run-script.js clean && yarn clean:root && yarn clean:packages",
"clean:root": "rm -rf ./dist/",
"clean:packages": "bash -c 'rm ./{python,js,ts}/*.tar.gz'",
"clean:modules": "find -name node_modules -or -name __pypackages__ -prune -exec rm -rf {} ';' 2> /dev/null"
},
"author": "Scramjet <open-source@scramjet.org>",
"license": "AGPL-3.0",
"repository": {
"type": "git",
"url": "https://github.com/scramjetorg/reference-apps.git"
},
"devDependencies": {
"@npmcli/run-script": "^3.0.3",
"fs-extra": "^9.1.0",
"glob": "^7.1.7",
"globrex": "^0.1.2",
"tar": "^6.1.0",
"typescript": "^4.3.4",
"@typescript-eslint/eslint-plugin": "^6.14.0",
"@typescript-eslint/parser": "^6.14.0",
"eslint": "^8.55.0",
"eslint-plugin-import": "^2.29.1",
"eslint-to-editorconfig": "^2.0.0"
},
"workspaces": {
"packages": [
"js/*",
"python/*",
"ts/*"
]
},
"dependencies": {
"scramjet": "^4.36.6",
"minimist": "^1.2.6"
}
}