-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.51 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.51 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
{
"name": "@curtissimo/elm-split-pane",
"version": "1.0.0",
"files": [
"./build/styles/main.css",
"./build/styles/main.css.map"
],
"repository": {
"type": "git",
"url": "git+https://gitlab.com/curtissimo/elm-split-pane.git"
},
"description": "A nestable split pane for Elm.",
"devDependencies": {
"@curtissimo/elm-hot": "latest",
"@parcel/transformer-elm": "latest",
"concurrently": "^9.2.1",
"elm": "^0.19.1-6",
"elm-doc-preview": "^6.0.1",
"elm-format": "^0.8.8",
"elm-json": "^0.2.13",
"elm-review": "^2.13.5",
"elm-test": "^0.19.1-revision17",
"elm-verify-examples": "^6.0.3",
"parcel": "latest"
},
"scripts": {
"build:assets:css": "parcel build assets/styles/main.css --dist-dir build/styles",
"build:assets": "npm run build:assets:css;",
"build:examples": "parcel build examples/src/index.html --dist-dir public",
"git:set-remote": "npm run git:set-remote:ssh",
"git:set-remote:http": "git remote add origin https://gitlab.com/curtissimo/elm-split-pane.git",
"git:set-remote:ssh": "git remote add origin git@gitlab.com:curtissimo/elm-split-pane.git",
"docs": "elm-doc-preview",
"lint:format": "elm-format --validate src",
"lint:review": "elm-review",
"start": "parcel ./examples/src/index.html --dist-dir .development",
"postinstall": "node ./patch-elm-hot.mjs",
"test:docs": "elm-verify-examples --run-tests"
},
"author": "Curtis Schlak <696163-realistschuckle@users.noreply.gitlab.com>",
"license": "MIT"
}