-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
110 lines (110 loc) · 2.68 KB
/
Copy pathpackage.json
File metadata and controls
110 lines (110 loc) · 2.68 KB
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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
{
"name": "red-editor",
"version": "1.0.0",
"description": "NodeRed editor standalone",
"main": "index.js",
"scripts": {
"test": "nyc ava",
"build:prod": "webpack --progress --colors --env=prod",
"build:dev": "webpack --progress --colors --env=dev"
},
"keywords": [
"nodered",
"editor"
],
"repository": {
"type": "git",
"url": "https://github.com/tecla5/red-editor.git"
},
"author": "Kristian Mandrup",
"license": "ISC",
"dependencies": {
"red-api": "github:tecla5/red-api",
"basic-auth": "1.1.0",
"bcryptjs": "2.4.3",
"body-parser": "1.17.2",
"cheerio": "0.22.0",
"clone": "2.1.1",
"cookie": "0.3.1",
"cookie-parser": "1.4.3",
"cors": "2.8.3",
"cron": "1.2.1",
"express": "4.15.3",
"express-session": "1.15.2",
"follow-redirects": "1.2.4",
"fs-extra": "1.0.0",
"fs.notify": "0.0.4",
"hash-sum": "1.0.2",
"i18next": "1.10.6",
"is-utf8": "0.2.1",
"js-yaml": "3.8.4",
"json-stringify-safe": "5.0.1",
"jsonata": "1.3.0",
"media-typer": "0.3.0",
"mqtt": "2.9.0",
"multer": "1.3.0",
"mustache": "2.3.0",
"nopt": "3.0.6",
"oauth2orize": "1.8.0",
"on-headers": "1.0.1",
"passport": "0.3.2",
"passport-http-bearer": "1.0.1",
"passport-oauth2-client-password": "0.1.2",
"raw-body": "2.2.0",
"semver": "5.3.0",
"sentiment": "2.1.0",
"uglify-js": "3.0.20",
"when": "3.7.8",
"ws": "1.1.1",
"xml2js": "0.4.17",
"node-red-node-feedparser": "0.1.*",
"node-red-node-email": "0.1.*",
"node-red-node-twitter": "0.1.*",
"node-red-node-rbe": "0.1.*"
},
"optionalDependencies": {
"bcrypt": "~1.0.1"
},
"devDependencies": {
"ava": "^0.22.0",
"babel-cli": "^6.24.0",
"babel-core": "^6.24.1",
"babel-loader": "^7.0.0",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-compact-reexports": "^0.1.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-polyfill": "^6.23.0",
"babel-preset-env": "^1.3.1",
"babili-webpack-plugin": "0.0.11",
"mock-local-storage": "^1.0.2",
"nightmare": "^2.10.0",
"nyc": "^11.0.2",
"webpack": "^3.5.6",
"webpack-merge": "^4.1.0"
},
"babel": {
"presets": [
"env"
],
"plugins": [
"transform-runtime"
]
},
"ava": {
"files": [
"test/**/*.test.js"
],
"concurrency": 1,
"failFast": true,
"failWithoutAssertions": false,
"tap": true,
"powerAssert": false,
"require": [
"babel-register",
"babel-polyfill"
],
"babel": "inherit"
}
}