forked from elelel/nodebb-plugin-import-phpbb
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
63 lines (63 loc) · 1.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
{
"name": "nodebb-plugin-import-phpbb",
"version": "0.1.5",
"description": "A phpBB3.1 to NodeBB data exporter",
"main": "./index.js",
"scripts": {
"build": "babel src --out-dir=build --source-maps=inline",
"build-watch": "babel src -v --out-dir=build --watch --source-maps=inline"
},
"repository": {
"type": "git",
"url": "https://github.com/jskorepa/nodebb-plugin-import-phpbb3.1"
},
"keywords": [
"phpbb",
"plugin",
"migrate",
"convert",
"export",
"import"
],
"authors": [
{
"name": "psychobunny",
"email": "[email protected]"
},
{
"name": "jskorepa",
"email": "[email protected]"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/jskorepa/nodebb-plugin-import-phpbb3.1/issues"
},
"babel": {
"presets": [
[
"env",
{
"targets": {
"node": 6
}
}
]
],
"env": "node"
},
"dependencies": {
"async": "~0.9.0",
"fs-extra": "~0.11.0",
"html-entities": "",
"lodash": "^4.17.2",
"marked": "~0.3.2",
"mysql": "~2.4.2",
"node-mkdirp": "0.0.1",
"underscore": "~1.6.0"
},
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-preset-env": "^1.1.4"
}
}