forked from StefanWerW/node-red-contrib-github
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
executable file
·66 lines (66 loc) · 1.66 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
{
"name": "node-red-contrib-github",
"version": "0.1.5",
"description": "Github for node-red",
"main": "node-red-contrib-github.js",
"devDependencies": {
"@types/jest": "^24.0.11",
"@types/node": "^11.13.4",
"@types/node-red": "^0.17.3",
"@types/react": "^16.8.13",
"@types/react-dom": "^16.8.4",
"enzyme": "^3.9.0",
"enzyme-adapter-react-16": "^1.12.1",
"jest-enzyme": "^7.0.2",
"react": "^16.8.6",
"node-red": "^0.20.6",
"react-dom": "^16.8.6",
"react-scripts": "^2.1.8",
"sinon": "^7.3.1",
"typescript": "^3.4.3",
"babel-eslint": "10.0.1",
"babel-jest": "^24.8.0"
},
"dependencies": {
"github-api": "3.x",
"node-fetch": "^2.6.0"
},
"node-red": {
"nodes": {
"github": "node-red-contrib-github.js"
}
},
"scripts": {
"build": "./node_modules/.bin/tsc ./src/node-red-contrib-github.ts --outDir ./",
"start": "react-scripts start",
"test": "react-scripts test",
"coverage": "npm test -- --coverage",
"eject": "react-scripts eject"
},
"repository": {
"type": "git",
"url": "git+https://github.com/StefanWerW/node-red-contrib-github.git"
},
"keywords": [
"node-red",
"github",
"red",
"iot"
],
"author": {
"name": "Stefan W; Andrii Trybynenko",
"email": "[email protected]; [email protected]",
"url": "https://github.com/StefanWerW/"
},
"license": "ISC",
"bugs": {
"url": "https://github.com/StefanWerW/node-red-contrib-github/issues"
},
"homepage": "https://github.com/StefanWerW/node-red-contrib-github#readme",
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
]
}