-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.83 KB
/
Copy pathpackage.json
File metadata and controls
59 lines (59 loc) · 1.83 KB
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
{
"name": "pastebin-ts",
"version": "1.3.0",
"description": "",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"build": "node_modules/typescript/bin/tsc",
"exec": "node_modules/typescript/bin/tsc && node test.js",
"clean": "rimraf coverage dist tmp",
"lint": "tslint -t stylish --project \"tsconfig.json\"",
"pretest": "npm run lint",
"test": "npm run test-only",
"test-only": "jest --coverage",
"test:watch": "jest --watch --coverage",
"docs": "typedoc --out docs src/index.ts",
"docs-watch": "typedoc --watch --out docs src/index.ts"
},
"keywords": [
"pastebin"
],
"repository": {
"type": "git",
"url": "https://github.com/j3lte/pastebin-ts"
},
"bugs": {
"url": "https://github.com/j3lte/pastebin-ts/issues"
},
"readmeFilename": "README.md",
"author": "Jelte Lagendijk <[email protected]>",
"license": "MIT",
"dependencies": {
"fs-readfile-promise": "^3.0.1",
"lodash": "^4.17.21",
"pjson": "^1.0.9",
"request": "^2.88.0",
"request-promise-native": "^1.0.5",
"when": "^3.7.8",
"xml2js": "^0.4.19"
},
"devDependencies": {
"@types/fs-readfile-promise": "^3.0.1",
"@types/jest": "^28.1.6",
"@types/lodash": "^4.14.182",
"@types/node": "^18.0.6",
"@types/request": "^2.48.8",
"@types/request-promise-native": "^1.0.18",
"@types/typescript": "^2.0.0",
"@types/xml2js": "^0.4.11",
"jest": "^28.1.3",
"rimraf": "^3.0.2",
"ts-jest": "^28.0.7",
"tslint": "^6.1.3",
"tslint-microsoft-contrib": "^6.2.0",
"tsutils": "^3.21.0",
"typedoc": "^0.23.8",
"typescript": "^4.7.4"
}
}