-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.33 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
{
"name": "organic-stack-upgrade",
"description": "lib for upgrading organic stem skeletons",
"version": "2.1.0",
"dependencies": {
"async": "^3.2.2",
"fs-extra": "^10.0.0",
"glob-stream": "^7.0.0",
"inquirer": "^8.2.0",
"istextorbinary": "^6.0.0",
"lodash": "^4.17.21",
"merge-util": "^0.3.1",
"mkdirp": "^1.0.4",
"p-iteration": "^1.1.8",
"semver": "^7.3.5"
},
"devDependencies": {
"eslint": "^7",
"eslint-config-standard": "^16.0.3",
"jest": "^27.4.4"
},
"main": "index.js",
"directories": {
"lib": "lib"
},
"scripts": {
"test": "jest",
"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"
},
"repository": {
"type": "git",
"url": "git+https://github.com/node-organic/organic-stack-upgrade.git"
},
"author": "Boris Filipov",
"license": "MIT",
"bugs": {
"url": "https://github.com/node-organic/organic-stack-upgrade/issues"
},
"homepage": "https://github.com/node-organic/organic-stack-upgrade#readme",
"jest": {
"collectCoverage": true
}
}