generated from jamesrswift/Best-README-Template
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 1.53 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
61
62
63
64
65
66
67
{
"name": "traw",
"version": "1.0.0",
"description": "Typescript Reddit API Wrapper",
"main": "build/index.js",
"types": "build/index.d.ts",
"scripts": {
"test": "mocha -r ts-node/register tests/**/*.test.ts",
"test:coverage": "nyc npm run test",
"build": "rimraf ./build && tsc",
"start": "npm run build && node build/index.js",
"typedoc": "npx typedoc",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/JamesxX/traw.git"
},
"keywords": [
"typescript",
"reddit",
"api",
"wrapper"
],
"author": "J. R. Swift",
"license": "GPL-3.0-only",
"bugs": {
"url": "https://github.com/JamesxX/traw/issues"
},
"homepage": "https://github.com/JamesxX/traw#readme",
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "^1.0.2",
"@types/chai": "^4.3.1",
"@types/lodash": "^4.14.182",
"@types/mocha": "^9.1.0",
"@types/node": "^17.0.25",
"chai": "^4.3.6",
"mocha": "^9.2.2",
"nyc": "^15.1.0",
"rimraf": "^3.0.2",
"ts-node": "^10.7.0",
"typescript": "^4.6.3"
},
"dependencies": {
"axios": "^0.26.1",
"form-data": "^4.0.0",
"lodash": "^4.17.21"
},
"nyc": {
"extends": "@istanbuljs/nyc-config-typescript",
"check-coverage": true,
"all": true,
"include": [
"src/**/!(*.test.*).[tj]s?(x)"
],
"exclude": [
"tests/**/*.*"
],
"reporter": [
"html",
"lcov",
"text",
"text-summary"
],
"report-dir": "coverage"
}
}