This repository has been archived by the owner on Jan 25, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
52 lines (52 loc) · 1.6 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
{
"name": "tistory-api",
"version": "0.1.4",
"description": "tistory-api는 nodejs 환경에서 티스토리 블로그 API를 쉽게 사용할 수 있도록 제공합니다.",
"main": "index.js",
"scripts": {
"lint": "eslint src/ *.js test/ && echo Lint passed.",
"test": "cross-env NODE_ENV=production node -r babel-register ./test/test",
"build": "cross-env NODE_ENV=production node -r babel-register ./node_modules/babel-cli/bin/babel src --out-dir lib"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ryan0822/tistory-api.git"
},
"keywords": [
"blog",
"tistory",
"api"
],
"author": "ryan0822<lovejh82@gmail.com> (https://github.com/ryan0822)",
"license": "MIT",
"bugs": {
"url": "https://github.com/ryan0822/tistory-api/issues"
},
"homepage": "https://github.com/ryan0822/tistory-api#readme",
"devEngines": {
"node": ">=6.x",
"npm": ">=3.x"
},
"dependencies": {
"request": "^2.79.0"
},
"devDependencies": {
"babel-cli": "^6.22.2",
"babel-core": "^6.21.0",
"babel-eslint": "^7.1.1",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-transform-flow-strip-types": "^6.22.0",
"babel-preset-es2015": "^6.22.0",
"babel-register": "^6.22.0",
"cross-env": "^3.1.4",
"eslint": "^3.13.1",
"eslint-config-airbnb-base": "^11.0.1",
"eslint-loader": "^1.6.1",
"eslint-plugin-compat": "^1.0.0",
"eslint-plugin-flowtype": "^2.29.2",
"eslint-plugin-flowtype-errors": "^2.0.3",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-promise": "^3.4.0",
"flow-bin": "^0.37.4"
}
}