generated from alexk111/node-red-node-typescript-starter
-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
82 lines (82 loc) · 2.89 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
{
"name": "node-red-contrib-kraken",
"version": "0.1.1",
"description": "Node-RED nodes to talk to Kraken",
"scripts": {
"add-node": "node ./utils/add-node.js",
"copy": "copyfiles -u 2 \"./src/nodes/**/*.{png,svg}\" \"./dist/nodes/\"",
"build:editor": "rollup -c rollup.config.editor.js",
"build:editor:watch": "rollup -c rollup.config.editor.js -w",
"build:runtime": "tsc -p tsconfig.runtime.json",
"build:runtime:watch": "tsc -p tsconfig.runtime.watch.json --watch --preserveWatchOutput",
"build": "rm -rf dist && yarn copy && yarn build:editor && yarn build:runtime",
"test": "jest --forceExit --detectOpenHandles --colors",
"test:watch": "jest --forceExit --detectOpenHandles --watchAll",
"dev": "rm -rf dist && yarn copy && concurrently --kill-others --names 'COPY,EDITOR,RUNTIME,TEST' --prefix '({name})' --prefix-colors 'yellow.bold,cyan.bold,greenBright.bold,magenta.bold' 'onchange -v \"src/**/*.png\" \"src/**/*.svg\" -- yarn copy' 'yarn build:editor:watch' 'yarn build:runtime:watch' 'sleep 10; yarn test:watch'",
"lint": "prettier --ignore-path .eslintignore --check '**/*.{js,ts,md}'; eslint --ext .js,.ts .",
"lint:fix": "prettier --ignore-path .eslintignore --write '**/*.{js,ts,md}'; eslint --ext .js,.ts . --fix",
"release": "yarn build && yarn publish && git push --follow-tags"
},
"author": "Alex Kaul",
"repository": {
"type": "git",
"url": "https://github.com/redbtc/node-red-contrib-kraken"
},
"license": "MIT",
"keywords": [
"node-red",
"kraken",
"bitcoin"
],
"node-red": {
"nodes": {
"kraken-api-config": "./dist/nodes/kraken-api-config/kraken-api-config.js",
"kraken-api": "./dist/nodes/kraken-api/kraken-api.js"
}
},
"dependencies": {
"node-fetch": "^2.6.1"
},
"devDependencies": {
"@rollup/plugin-typescript": "^6.0.0",
"@types/express": "^4.17.7",
"@types/jest": "^26.0.9",
"@types/node": "^14.0.27",
"@types/node-fetch": "^2.5.7",
"@types/node-red": "^1.1.0",
"@types/node-red-node-test-helper": "^0.2.0",
"@types/sinon": "^9.0.4",
"@types/supertest": "^2.0.10",
"@typescript-eslint/eslint-plugin": "^3.8.0",
"@typescript-eslint/parser": "^3.8.0",
"colorette": "^1.2.1",
"concurrently": "^5.3.0",
"copyfiles": "^2.3.0",
"eslint": "^7.6.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-jest": "^23.20.0",
"eslint-plugin-prettier": "^3.1.4",
"glob": "^7.1.6",
"jest": "^26.2.2",
"mustache": "^4.0.1",
"node-red": "^1.1.3",
"node-red-node-test-helper": "^0.2.5",
"onchange": "^7.0.2",
"prettier": "^2.0.5",
"rollup": "^2.23.0",
"ts-jest": "^26.1.4",
"typescript": "^3.9.7"
},
"jest": {
"testEnvironment": "node",
"roots": [
"<rootDir>/src"
],
"transform": {
"^.+\\.ts$": "ts-jest"
},
"testMatch": [
"**/__tests__/**/*.test.ts"
]
}
}