-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
41 lines (41 loc) · 1.03 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
{
"name": "wxr-generator",
"version": "0.2.0",
"description": "XML(WXR) file generator for fully support official WordPress Import Plugin.",
"main": "./lib",
"scripts": {
"compile": "babel --presets es2015,stage-1 --plugins transform-runtime src/ --out-dir lib/",
"prepublish": "npm run compile",
"test": ""
},
"repository": {
"type": "git",
"url": "git+https://github.com/firekylin/wxr-generator.git"
},
"keywords": [
"xml",
"wordpress",
"export",
"import",
"wxr",
"plugin",
"generator"
],
"author": "lizheming <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/firekylin/wxr-generator/issues"
},
"homepage": "https://github.com/firekylin/wxr-generator#readme",
"dependencies": {
"xmlbuilder": "^9.0.1"
},
"devDependencies": {
"babel": "^6.23.0",
"babel-cli": "^6.24.1",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-1": "^6.24.1",
"babel-runtime": "^6.23.0"
}
}