-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
75 lines (75 loc) · 2.27 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
{
"name": "@iota/gh-tangle-release",
"version": "0.6.5",
"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",
"dist": "npm-run-all build test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/iotaledger/gh-tangle-release"
},
"keywords": [
"actions",
"node"
],
"author": "Martyn Janes <[email protected]>",
"license": "MIT",
"dependencies": {
"-": "0.0.1",
"@actions/core": "^1.2.4",
"@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.19.2",
"chalk": "^4.1.0",
"commander": "^6.0.0",
"node-emoji": "^1.10.0"
},
"devDependencies": {
"@types/bluebird": "^3.5.32",
"@types/jest": "^26.0.5",
"@types/node-emoji": "^1.8.1",
"@typescript-eslint/eslint-plugin": "^3.6.1",
"@typescript-eslint/parser": "^3.6.1",
"eslint": "^7.5.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jsdoc": "^30.0.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-unicorn": "^21.0.0",
"husky": "^4.2.5",
"jest": "^26.1.0",
"npm-run-all": "^4.1.5",
"rimraf": "^3.0.2",
"ts-jest": "^26.1.0",
"ts-node": "^8.10.2",
"typescript": "^3.9.7"
},
"jest": {
"transform": {
"^.+\\.ts?$": "ts-jest"
},
"testRegex": "./tests/.*.spec.ts$",
"moduleFileExtensions": [
"ts",
"js"
],
"collectCoverage": true
},
"bin": {
"gh-tangle-release": "./dist/cli.js"
}
}