-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 1 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
{
"name": "android-config-editor-action",
"version": "1.0.0",
"description": "A GitHub action that let's you edit the configuration of an Android application",
"main": "index.js",
"scripts": {
"test": "mocha",
"unittests": "npm run test tests/unit-tests.js",
"build": "ncc build index.js -o dist"
},
"repository": {
"type": "git",
"url": "git+https://github.com/danitseitlin/android-config-editor-action.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/danitseitlin/android-config-editor-action/issues"
},
"dependencies": {
"@actions/core": "^1.2.6",
"@actions/github": "^4.0.0"
},
"devDependencies": {
"@actions/core": "^1.11.1",
"@vercel/ncc": "^0.38.1",
"@types/chai": "4.2.22",
"@types/mocha": "9.0.0",
"@types/node": "16.11.6",
"chai": "4.3.6",
"mocha": "9.2.2",
"ts-node": "10.4.0",
"typescript": "4.6.3"
},
"homepage": "https://github.com/danitseitlin/android-config-editor-action#readme"
}