-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
60 lines (60 loc) · 1.5 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
53
54
55
56
57
58
59
60
{
"name": "devto-nodejs-sdk",
"version": "1.0.7",
"description": "The Dev.to Node.js SDK",
"main": "dist/index.js",
"engines": {
"node": ">=12"
},
"scripts": {
"clean": "rm -rf ./dist",
"lint": "tslint --project tsconfig.json",
"lint:fix": "tslint --fix --project tsconfig.json",
"build": "tsc",
"build:debug": "npm run clean && npm run build -- --sourceMap",
"build:clean": "npm run clean && npm run build",
"build:watch": "tsc -w"
},
"husky": {
"pre-commit": "npm run lint"
},
"repository": {
"type": "git",
"url": "git+https://github.com/khaosdoctor/devto-nodejs-sdk.git"
},
"keywords": [
"thepracticaldev",
"devto",
"sdk",
"nodejs",
"dev.to",
"node.js"
],
"author": "Lucas Santos <hello@lsantos.dev>",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/khaosdoctor/devto-nodejs-sdk/issues"
},
"homepage": "https://github.com/khaosdoctor/devto-nodejs-sdk#readme",
"devDependencies": {
"@types/chai": "^4.2.18",
"@types/mocha": "^8.2.2",
"@types/nock": "^11.1.0",
"@types/node": "^15.0.2",
"@types/sinon": "^10.0.0",
"chai": "^4.3.4",
"husky": "^4.3.8",
"nock": "^12.0.3",
"nyc": "^15.1.0",
"source-map-support": "^0.5.19",
"ts-node": "^9.1.1",
"tslint": "^6.1.3",
"tslint-config-standard": "^9.0.0",
"tslint-eslint-rules": "^5.4.0",
"typescript": "^4.2.4"
},
"dependencies": {
"axios": "^0.21.1",
"axios-case-converter": "^0.7.0"
}
}