-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
47 lines (47 loc) · 1.05 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
{
"name": "ruty",
"version": "1.2.3",
"description": "Ruty is a simple URI route builder.",
"keywords": [
"uri",
"path",
"builder"
],
"homepage": "https://github.com/rmariuzzo/ruty#readme",
"bugs": {
"url": "https://github.com/rmariuzzo/ruty/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rmariuzzo/ruty.git"
},
"license": "MIT",
"author": "Rubens Mariuzzo <rubens@mariuzzo.com>",
"main": "dist/ruty.js",
"types": "dist/ruty.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsc --project tsconfig.json",
"compile": "npm run build -- --noEmit",
"test": "jest",
"postversion": "git push origin && git push origin --tags"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"dependencies": {},
"devDependencies": {
"@types/jest": "^26.0.19",
"@zeit/ncc": "^0.22.0",
"husky": "^4.3.6",
"jest": "^26.6.3",
"prettier": "^2.2.1",
"pretty-quick": "^3.1.0",
"ts-jest": "^26.4.4",
"typescript": "^4.1.3"
}
}