-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
46 lines (46 loc) · 1.29 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
{
"name": "tistory-backup-extractor",
"version": "0.8.11",
"description": "",
"main": "dist/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/doortts/tistory-backup-extractor.git"
},
"scripts": {
"start": "babel-node --presets es2015 app/app.js",
"test": "mocha --compilers js:babel-register test/**/*.test.js",
"test-watch": "npm test -- --watch",
"lint": "eslint app test *.js",
"test-run": "babel-node --presets es2015 run.js",
"dist": "babel --presets es2015 app -d dist",
"prepublish": "npm run dist"
},
"keywords": [],
"author": "Suwon Chae",
"license": "MIT",
"dependencies": {
"ascii-progress": "^1.0.5",
"fs-extra": "^1.0.0",
"gray-matter": "^2.1.0",
"immutable": "^3.8.1",
"moment": "^2.17.1",
"striptags": "^2.1.1",
"to-markdown": "^3.0.3",
"unirest": "^0.5.1",
"xml-stream": "^0.4.5",
"xml2js": "^0.4.17"
},
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-plugin-transform-async-to-generator": "^6.16.0",
"babel-preset-es2015": "^6.18.0",
"babel-register": "^6.18.0",
"chai": "^3.5.0",
"eslint": "^3.9.1",
"eslint-config-standard": "^6.2.1",
"eslint-plugin-promise": "^3.3.1",
"eslint-plugin-standard": "^2.0.1",
"mocha": "^3.1.2"
}
}