generated from codetheweb/typescript-template
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
70 lines (70 loc) · 1.45 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
68
69
70
{
"name": "@mtucourses/thumbor",
"version": "2.0.0",
"description": "👍 a URL builder for Thumbor ",
"main": "dist/index.js",
"types": "dts/index.d.ts",
"repository": "[email protected]:Michigan-Tech-Courses/thumbor",
"author": "Max Isom <[email protected]>",
"license": "MIT",
"keywords": [
"👍",
"thumbor",
"thumbnail",
"image",
"generator",
"url",
"builder",
"typescript"
],
"files": [
"dist",
"dts"
],
"scripts": {
"lint": "xo",
"lint:fix": "xo --fix",
"test": "ava",
"test:watch": "ava --watch",
"test:coverage": "nyc --reporter=lcov ava",
"clean": "rm -rf dist dts",
"build": "tsc",
"build:watch": "tsc --watch",
"prepack": "yarn clean && yarn build"
},
"devDependencies": {
"@types/node": "^14.14.22",
"@typescript-eslint/eslint-plugin": "^4.11.1",
"@typescript-eslint/parser": "^4.11.1",
"ava": "^3.15.0",
"eslint": "^7.17.0",
"eslint-config-xo": "^0.33.1",
"eslint-config-xo-typescript": "^0.37.0",
"husky": "^4.3.6",
"lint-staged": "^10.5.3",
"nodemon": "^2.0.6",
"nyc": "^15.1.0",
"ts-node": "^9.1.1",
"typescript": "^4.1.3",
"xo": "^0.37.1"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,ts,tsx}": [
"xo --fix"
]
},
"ava": {
"extensions": [
"ts"
],
"require": [
"ts-node/register"
]
},
"dependencies": {}
}