-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
50 lines (50 loc) · 1.4 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
{
"name": "morphir-service",
"version": "1.0.0",
"description": "Morphir support for distributed service modeling",
"scripts": {
"clean": "del dist",
"test": "elm-test",
"make-cli": "cd cli && elm make src/Morphir/Elm/CLI.elm --output Morphir.Elm.CLI.js --optimize",
"make-cli-dev": "cd cli && elm make src/Morphir/Elm/CLI.elm --output Morphir.Elm.CLI.js",
"cli": "npm run clean && ncc build cli/morphir-service.js -o dist/morphir",
"build": "npm run clean && npm run make-cli && ncc build cli/morphir-service.js -o dist/morphir"
},
"repository": {
"type": "git",
"url": "git+https://github.com/finos/morphir-service.git"
},
"bin": {
"morphir-service": "./cli/morphir-service.js"
},
"files": [
"cli/cli.js",
"cli/morphir-service.js",
"cli/Morphir.Elm.CLI.js",
"cli/assets/*",
"src/Morphir/Service/*"
],
"keywords": [
"morphir",
"service"
],
"author": "MorganStanley",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/finos/morphir-service/issues"
},
"homepage": "https://github.com/finos/morphir-service#readme",
"devDependencies": {
"@vercel/ncc": "^0.24.1",
"del-cli": "3.0.1",
"elm": "^0.19.1-3",
"elm-doc-preview": "^5.0.5",
"elm-test": "^0.19.1-revision2"
},
"dependencies": {
"commander": "^4.1.1",
"elm-format": "^0.8.4",
"fs-extra": "^9.0.0",
"get-stdin": "^8.0.0"
}
}