-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
50 lines (50 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
{
"name": "tiny-shortener",
"version": "2.2.3",
"description": "A new Tiny URL package with promise/async support.",
"main": "dist/tiny-shortener.js",
"types": "dist/tiny-shortener.d.ts",
"scripts": {
"build": "tsc",
"doc": "typedoc --out ./docs/ ./src/",
"deploy": "npm run validation && npm run build && npm publish",
"lint": "tslint --config tslint.json --project .",
"validation": "npm run test && npm run lint && npm run doc",
"test": "jest --config jest.config.json --ci --runInBand --forceExit --no-cache"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Fazendaaa/tiny-shortener.git"
},
"author": "Fazendaaa",
"license": "MIT",
"bugs": {
"url": "https://github.com/Fazendaaa/tiny-shortener/issues"
},
"homepage": "https://github.com/Fazendaaa/tiny-shortener#readme",
"devDependencies": {
"@types/jest": "^22.2.3",
"@types/node": "^9.6.55",
"body-parser": "^1.19.0",
"husky": "^1.3.1",
"jest": "^22.4.4",
"ts-jest": "^22.4.6",
"ts-node": "^7.0.1",
"tslint": "^5.20.1",
"tslint-microsoft-contrib": "^5.2.1",
"typedoc": "^0.13.0",
"typescript": "^2.9.2"
},
"keywords": [
"tiny",
"url",
"shortener",
"short"
],
"husky": {
"hooks": {
"pre-commit": "npm run lint",
"pre-push": "npm run doc && npm test"
}
}
}