-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
76 lines (76 loc) · 2.35 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
{
"name": "@iota/gh-tangle-release",
"version": "0.7.2",
"description": "Create a release and adds metadata to the IOTA Tangle",
"main": "dist/index.js",
"module": "es/index.js",
"typings": "typings/index.d.ts",
"scripts": {
"clean": "rimraf dist typings",
"lint": "eslint src/**/*.ts",
"compile": "tsc",
"compile-watch": "tsc --watch",
"typings": "tsc src/index.ts --emitDeclarationOnly --declaration true --declarationDir typings",
"build": "npm-run-all clean lint compile typings",
"test-lint": "eslint tests/**/*.ts",
"test-run": "jest --coverage",
"test": "npm-run-all test-lint test-run",
"release-action": "ncc build src/action.ts -o action",
"dist": "npm-run-all build test release-action"
},
"repository": {
"type": "git",
"url": "git+https://github.com/iotaledger/gh-tangle-release"
},
"keywords": [
"actions",
"node"
],
"author": "Martyn Janes <[email protected]>",
"license": "MIT",
"dependencies": {
"@actions/core": "^1.2.6",
"@actions/exec": "^1.0.4",
"@actions/github": "^4.0.0",
"@iota/converter": "^1.0.0-beta.23",
"@iota/core": "^1.0.0-beta.24",
"axios": "^0.21.1",
"chalk": "^4.1.0",
"commander": "^6.1.0",
"node-emoji": "^1.10.0"
},
"devDependencies": {
"@types/bluebird": "^3.5.32",
"@types/jest": "^26.0.13",
"@types/node-emoji": "^1.8.1",
"@typescript-eslint/eslint-plugin": "^4.1.1",
"@typescript-eslint/parser": "^4.1.1",
"@zeit/ncc": "^0.22.3",
"eslint": "^7.9.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jsdoc": "^30.5.1",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-unicorn": "^21.0.0",
"husky": "4.3.6",
"jest": "^26.4.2",
"npm-run-all": "^4.1.5",
"rimraf": "^3.0.2",
"ts-jest": "^26.3.0",
"ts-node": "^9.0.0",
"typescript": "^4.0.2"
},
"jest": {
"transform": {
"^.+\\.ts?$": "ts-jest"
},
"testRegex": "./tests/.*.spec.ts$",
"moduleFileExtensions": [
"ts",
"js"
],
"collectCoverage": true
},
"bin": {
"gh-tangle-release": "./dist/cli.js"
}
}