-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 958 Bytes
/
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
{
"name": "qiita-js-2",
"private": false,
"author": "neetshin",
"license": "MIT",
"version": "1.3.1",
"description": "Modern Qiita v2 API client for Node/Browser ",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"scripts": {
"test:lint": "tslint -c tslint.yml 'src/**/*.{ts,tsx}'",
"build": "tsc",
"docs:build": "typedoc ./src --out ./docs --excludeNotExported && touch ./docs/.nojekyll"
},
"repository": {
"type": "git",
"url": "git+https://github.com/neet/qiita-js-2.git"
},
"keywords": [
"qiita"
],
"bugs": {
"url": "https://github.com/neet/qiita-js-2/issues"
},
"homepage": "https://github.com/neet/qiita-js-2#readme",
"dependencies": {
"axios": "^0.18.0",
"http-link-header": "^0.8.0"
},
"devDependencies": {
"@types/http-link-header": "^0.6.2",
"@types/node-fetch": "^2.1.2",
"tslint": "^5.11.0",
"typedoc": "^0.12.0",
"typescript": "^3.0.3"
}
}