-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
31 lines (31 loc) · 976 Bytes
/
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
{
"name": "elm-daterange-picker",
"version": "1.0.0",
"description": "A daterange picker in Elm.",
"private": true,
"scripts": {
"build": "rimraf dist && parcel build demo/index.html --public-url ./",
"deploy": "npm run build && gh-pages -m \"Publish demo [ci skip]\" -d dist",
"postinstall": "elm-tooling install",
"test": "npx elm-test",
"start": "parcel serve demo/index.html --no-cache"
},
"repository": {
"type": "git",
"url": "git+https://github.com/n1k0/elm-daterange-picker.git"
},
"author": "Nicolas Perriault <[email protected]>",
"license": "MIT",
"devDependencies": {
"@parcel/transformer-elm": "^2.5.0",
"@parcel/transformer-sass": "^2.5.0",
"elm-tooling": "^1.8.0",
"gh-pages": "^3.2.3",
"parcel": "^2.5.0",
"rimraf": "^3.0.2"
},
"homepage": "https://github.com/n1k0/elm-daterange-picker#readme",
"bugs": {
"url": "https://github.com/n1k0/elm-daterange-picker/issues"
}
}