forked from finos/morphir-elm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 2.01 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
{
"name": "morphir-elm",
"version": "2.3.0",
"description": "Elm bindings for Morphir",
"scripts": {
"clean": "del dist",
"test": "elm-test",
"make-cli": "cd cli && elm make src/Morphir/Elm/CLI.elm --output Morphir.Elm.CLI.js --optimize && elm make src/Morphir/Elm/DaprCLI.elm --output Morphir.Elm.DaprCLI.js --optimize",
"make-cli-dev": "cd cli && elm make src/Morphir/Elm/CLI.elm --output Morphir.Elm.CLI.js && elm make src/Morphir/Elm/DaprCLI.elm --output Morphir.Elm.DaprCLI.js",
"make-dev-server": "cd cli && elm make src/Morphir/Web/DevelopMain.elm --output=web/main.js",
"dev-server-live": "cd cli && elm-live src/Morphir/Web/DevelopMain.elm --start-page=web/index.html --dir=./web --proxy-prefix /server --proxy-host http://localhost:3000/server -- --output=web/main.js",
"build": "npm run clean && npm run make-cli && npm run make-dev-server && ncc build cli/morphir.js -o dist/morphir"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Morgan-Stanley/morphir-elm.git"
},
"bin": {
"morphir-elm": "./cli/morphir-elm.js",
"morphir-dapr": "./cli/morphir-dapr.js"
},
"files": [
"cli/cli.js",
"cli/morphir-elm.js",
"cli/morphir-elm-make.js",
"cli/morphir-elm-gen.js",
"cli/morphir-elm-develop.js",
"cli/morphir-dapr.js",
"cli/Morphir.Elm.CLI.js",
"cli/Morphir.Elm.DaprCLI.js",
"cli/assets/*",
"cli/web/*",
"src/Morphir/SDK/*",
"redistributable/SpringBoot/*"
],
"keywords": [
"morphir",
"elm"
],
"author": "MorganStanley",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/Morgan-Stanley/morphir-elm/issues"
},
"homepage": "https://github.com/Morgan-Stanley/morphir-elm#readme",
"devDependencies": {
"@vercel/ncc": "^0.24.1",
"del-cli": "3.0.1",
"elm": "^0.19.1-3",
"elm-doc-preview": "^3.0.4",
"elm-test": "^0.19.1-revision4"
},
"dependencies": {
"commander": "^4.1.1",
"express": "^4.17.1",
"fs-extra": "^9.0.1",
"get-stdin": "^8.0.0"
}
}