-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.53 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.53 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
{
"name": "wp-xml-reader",
"version": "0.1.0",
"description": "WP XML import file Reader/Builder",
"author": "Pimeo (bertrand.souriau@gmail.com)",
"main": "index.js",
"scripts": {
"start": "node index.js",
"build": "node build.js",
"reader:testimonial": "npm run start -- --post-type testimonial",
"builder:testimonial": "npm run build -- --post-type testimonial",
"copy:medias:testimonial": "node copy-medias/testimonial.js",
"reader:jewelry": "npm run start -- --post-type jewelry",
"builder:jewelry": "npm run build -- --post-type jewelry",
"copy:medias:jewelry": "node copy-medias/jewelry.js",
"reader:custom-ring": "npm run start -- --post-type custom-ring",
"builder:custom-ring": "npm run build -- --post-type custom-ring",
"copy:medias:custom-ring": "node copy-medias/custom-ring.js",
"reader:diamond": "npm run start -- --post-type diamond",
"builder:diamond": "npm run build -- --post-type diamond",
"copy:medias:diamond": "node copy-medias/diamond.js",
"reader:post": "npm run start -- --post-type post",
"builder:post": "npm run build -- --post-type post",
"copy:medias:post": "node copy-medias/post.js",
"reader:media": "npm run start -- --post-type media",
"builder:media": "npm run build -- --post-type media",
"test": "echo \"Error: no test specified\" && exit 1"
},
"license": "MIT",
"dependencies": {
"chalk": "^2.3.2",
"commander": "^2.15.1",
"fs-extra": "^5.0.0",
"request": "^2.85.0",
"when": "^3.7.8",
"xml2js": "^0.5.0"
}
}