-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
37 lines (37 loc) · 948 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
32
33
34
35
36
37
{
"name": "elm-datepicker",
"version": "1.0.0",
"description": "Customisable datepicker written in Elm",
"main": "index.js",
"directories": {
"example": "examples",
"test": "tests"
},
"engines": {
"node": "9.3.0"
},
"scripts": {
"test": "elm-test --verbose && ./cypress-tests.sh",
"postinstall": "cd examples && ../node_modules/.bin/elm make *.elm --output=example.js && cd ..",
"start": "node_modules/.bin/http-server ./examples"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dwyl/elm-datepicker.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/dwyl/elm-datepicker/issues"
},
"homepage": "https://github.com/dwyl/elm-datepicker#readme",
"devDependencies": {
"cypress": "^4.0.2",
"elm-format": "0.8.2",
"elm-test": "0.19.1-revision2"
},
"dependencies": {
"elm": "0.19.1-3",
"http-server": "^0.12.1"
}
}