-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.11 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
{
"name": "blueprints-modeler",
"version": "1.0.0",
"description": "Template for writing blueprints to FlowBuild",
"main": "index.js",
"scripts": {
"test": "jest -i",
"test-watch": "jest --watch",
"export": "node ./src/scripts/export.js",
"deploy": "node ./src/scripts/deploy.js",
"validate": "node ./src/scripts/validate.js",
"compare": "node ./src/scripts/compare.js",
"pull": "node ./src/scripts/pull.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gustavo-fdte/blueprints-modeler.git"
},
"keywords": [],
"author": "Gustavo Capistrano Haramura",
"license": "MIT",
"bugs": {
"url": "https://github.com/gustavo-fdte/blueprints-modeler/issues"
},
"homepage": "https://github.com/gustavo-fdte/blueprints-modeler#readme",
"dependencies": {
"axios": "^0.21.1",
"console-table-printer": "^2.9.0",
"date-fns": "^2.22.1",
"dotenv-flow": "^3.2.0",
"jsum": "^1.0.1",
"lodash": "^4.17.21",
"winston": "^3.3.3"
},
"devDependencies": {
"eslint": "^7.28.0",
"eslint-plugin-import": "^2.23.4",
"jest": "^27.0.4"
}
}