-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.02 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
{
"name": "ess-dev",
"version": "2.4.0",
"description": "Boilerplate code for ess forms development",
"main": "index.js",
"scripts": {
"ess-dev": "node lib/index.js init -o output",
"test": "jest --coverage",
"coveralls": "jest --coverage && cat ./coverage/lcov.info | coveralls",
"reset": "node ./devTools/helpers.js"
},
"bin": {
"ess-dev": "lib/index.js"
},
"files": [
"lib",
"templates"
],
"author": "John Kapantzakis",
"license": "ISC",
"repository": {
"type": "git",
"url": "https://github.com/kapantzak/ess-dev.git"
},
"private": false,
"keywords": [
"node",
"javascript",
"boilerplate",
"handlebars",
"templates"
],
"dependencies": {
"chalk": "^3.0.0",
"clear": "^0.1.0",
"figlet": "^1.2.4",
"handlebars": "^4.7.3",
"inquirer": "^7.0.4",
"log-symbols": "^3.0.0",
"treeify": "^1.1.0",
"yargs": "^15.1.0"
},
"devDependencies": {
"coveralls": "^3.0.9",
"jest": "^25.1.0",
"rimraf": "^3.0.2"
}
}