-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
43 lines (43 loc) · 1.3 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
{
"name": "bulk-publish-entries-assets",
"version": "1.1.1",
"description": "This script lets you bulk publish entries and assets of your stack",
"main": "index.js",
"scripts": {
"test": "node copyLogs.js && jest",
"publish_assets": "node src/producer/publish_assets.js",
"publish_entries": "node src/producer/publish_entries.js",
"publish_unpublish": "node src/producer/publish_unpublished_env.js",
"unpublish": "node src/producer/unpublish.js",
"publish_edits": "node src/producer/publish_edits.js",
"cross_publish": "node src/producer/cross_publish.js",
"publish_localized": "node src/producer/nonlocalized_field_changes.js",
"add_fields": "node src/producer/add_fields.js",
"revert": "node src/producer/revert.js"
},
"author": "",
"license": "ISC",
"dependencies": {
"bluebird": "^3.7.2",
"chalk": "^3.0.0",
"debug": "^4.3.5",
"lodash": "^4.17.21",
"request": "^2.88.2",
"winston": "^3.13.0",
"yesno": "^0.4.0"
},
"jest": {
"testEnvironment": "node",
"coveragePathIgnorePatterns": [
"/node_modules/"
]
},
"devDependencies": {
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.1.0",
"eslint-plugin-import": "^2.20.1",
"jest": "^29.7.0",
"jest-html-reporter": "^2.8.1",
"nock": "^12.0.3"
}
}