-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
37 lines (37 loc) · 1.53 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
{
"name": "angelscripts-compose-development",
"version": "3.2.1",
"scripts": {
"test": "echo no tests",
"release-patch": "npm run test && npm version patch && npm publish && git push --tags && git push origin master",
"release-minor": "npm run test && npm version minor && npm publish && git push --tags && git push origin master",
"release-major": "npm run test && npm version major && npm publish && git push --tags && git push origin master"
},
"dependencies": {
"angelabilities-exec": "^1.0.0",
"json2yaml": "^1.1.0",
"organic-dna-cells-info": "^2.0.4",
"organic-stem-skeleton-find-root": "^2.0.1"
},
"devDependencies": {
"eslint": "^4.18.2",
"eslint-config-standard": "^11.0.0",
"eslint-plugin-import": "^2.9.0",
"eslint-plugin-jest": "^21.24.1",
"eslint-plugin-node": "^6.0.1",
"eslint-plugin-promise": "^3.7.0",
"eslint-plugin-standard": "^3.0.1"
},
"description": "[organic-angel](https://github.com/node-organic/organic-angel) scripts for generating [docker-compose](https://docs.docker.com/compose/) compatible configuration **and** commands aiding docker-compose usage in development.",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/node-organic/angelscripts-compose-development.git"
},
"author": "Boris Filipov",
"license": "MIT",
"bugs": {
"url": "https://github.com/node-organic/angelscripts-compose-development/issues"
},
"homepage": "https://github.com/node-organic/angelscripts-compose-development#readme"
}