-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
91 lines (91 loc) · 3.26 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "cws-publish",
"version": "2.1.1",
"description": "Upload chrome extensions to chrome web store using CI",
"homepage": "https://github.com/MobileFirstLLC/cws-publish",
"scripts": {
"clean": "rm -rf ./dist & rm -rf ./.nyc_output & rm -rf ./coverage",
"lint": "npx eslint ./src/**",
"uglify": "npm run uglify:cws && npm run uglify:publish && npm run uglify:upload",
"uglify:cws": "uglifyjs ./dist/cws.js -m -o ./dist/cws.js",
"uglify:publish": "uglifyjs ./dist/publish.js -m -o ./dist/publish.js",
"uglify:upload": "uglifyjs ./dist/upload.js -m -o ./dist/upload.js",
"build:action": "npm run build && ncc build ./dist/action.js -m -o ./action && rm -rf ./dist/action.js",
"build": "tsc --project tsconfig.json && npm run uglify",
"test": "TS_NODE_PROJECT=\"tsconfig.testing.json\" nyc mocha -r ts-node/register ./test/*.spec.ts",
"coverage": "nyc --reporter=lcov npm run test",
"push_tags": "git push --follow-tags origin main",
"patch:beta:test": "npx standard-version -t \"\" --dry-run --release-as patch --prerelease beta",
"patch:beta": "npx standard-version -t \"\" --release-as patch --prerelease beta && npm run push_tags",
"patch:test": "npx standard-version -t \"\" --dry-run --release-as patch",
"patch": "npx standard-version -t \"\" --release-as patch && npm run push_tags",
"minor:beta:test": "npx standard-version -t \"\" --dry-run --release-as minor --prerelease beta",
"minor:beta": "npx standard-version -t \"\" --release-as minor --prerelease beta && npm run push_tags",
"minor:test": "npx standard-version -t \"\" --dry-run --release-as minor",
"minor": "npx standard-version -t \"\" --release-as minor && npm run push_tags"
},
"keywords": [
"chrome web store",
"continuous integration",
"chrome extension",
"chrome theme",
"ci/cd",
"publish",
"deployment"
],
"repository": {
"type": "git",
"url": "https://github.com/MobileFirstLLC/cws-publish"
},
"bugs": {
"url": "https://github.com/MobileFirstLLC/cws-publish/issues"
},
"standard-version": {
"infile": ".github/changelog.md"
},
"license": "Apache-2.0",
"author": {
"name": "Mobile First LLC",
"email": "[email protected]",
"url": "https://github.com/MobileFirstLLC"
},
"funding": "https://github.com/sponsors/MobileFirstLLC",
"publishConfig": {
"access": "public"
},
"eslint": "8.22.0",
"bin": {
"cws-upload": "dist/upload.js",
"cws-publish": "dist/publish.js"
},
"engines": {
"node": ">=12.0.0"
},
"dependencies": {
"commander": "12.1.0",
"google-auth-library": "9.1.0",
"superagent": "8.1.2"
},
"devDependencies": {
"@actions/core": "1.11.1",
"@actions/github": "6.0.0",
"@types/mocha": "10.0.10",
"@types/node": "22.10.2",
"@typescript-eslint/eslint-plugin": "8.18.0",
"@typescript-eslint/parser": "8.18.0",
"@vercel/ncc": "0.38.3",
"chai": "4.5.0",
"coveralls": "3.1.1",
"eslint": "8.57.1",
"eslint-config-standard": "17.1.0",
"eslint-plugin-import": "2.31.0",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-promise": "6.6.0",
"mocha": "10.8.2",
"nyc": "17.0.0",
"sinon": "15.2.0",
"ts-node": "10.9.2",
"typescript": "5.0.4",
"uglify-js": "3.19.3"
}
}