-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
45 lines (45 loc) · 1003 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
38
39
40
41
42
43
44
45
{
"name": "elm-boil",
"version": "0.1.0",
"description": "Command Line Utility for creating a boilerplate Elm project easy to run, build and get deployed.",
"main": "src/index.js",
"engineStrict": true,
"engines": {
"node": ">=12.10.0"
},
"repository": {
"type": "git",
"url": "https://github.com/GioPat/elm-boil.git"
},
"publishConfig": {
"access": "public"
},
"bin": {
"elm-boil": "./src/cli.js"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"elm",
"cli",
"create-elm-project",
"app"
],
"author": "giopat",
"license": "ISC",
"dependencies": {
"gulp": "^4.0.2",
"gulp-clean-css": "^4.2.0",
"gulp-concat": "^2.6.1",
"gulp-connect": "^5.7.0",
"gulp-elm": "^0.8.2",
"gulp-hash-filename": "^2.0.1",
"gulp-inject": "^5.0.5",
"gulp-sass": "^4.0.2",
"gulp-uglify": "^3.0.2",
"inquirer": "^7.0.1",
"open": "^7.0.0",
"yargs": "^15.0.2"
}
}