-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
44 lines (44 loc) · 1.15 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
{
"name": "blueprint-builder-template",
"version": "1.0.0",
"description": "boilerplate to build blueprints for flowbuild using an IDE",
"main": "index.js",
"scripts": {
"plop": "plop",
"report": "node ./scripts/report.js",
"export": "node ./scripts/export.js",
"test": "node ./node_modules/.bin/cucumber-js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/flow-build/blueprint-builder-template.git"
},
"keywords": [
"flowbuild",
"blueprints"
],
"author": "Gustavo C. Haramura",
"license": "MIT",
"bugs": {
"url": "https://github.com/flow-build/blueprint-builder-template/issues"
},
"homepage": "https://github.com/flow-build/blueprint-builder-template#readme",
"dependencies": {
"@cucumber/cucumber": "^7.3.2",
"ajv-schema-generator": "^0.0.1",
"axios": "^0.26.1",
"console-table-printer": "^2.11.0",
"dotenv": "^16.0.0",
"jsum": "^2.0.0-alpha.4",
"lodash": "^4.17.21",
"mustache": "^4.2.0",
"pg": "^8.7.3",
"winston": "^3.6.0"
},
"devDependencies": {
"eslint": "^8.10.0",
"jest": "^27.5.1",
"knex": "^2.0.0",
"plop": "^3.0.5"
}
}