-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.24 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
{
"name": "ts-done-yet",
"version": "0.1.4",
"description": "how far is your migration to typescript?",
"main": "build/index.js",
"types": "source/index.ts",
"bin": {
"ts-done-yet": "bin/index.js"
},
"scripts": {
"dev": "nodemon --watch 'source/**/*.ts' --exec 'ts-node' source/index.ts",
"start": "tsc && node ./build/index.js",
"prepublishOnly": "tsc"
},
"keywords": [
"typescript",
"migration",
"utility"
],
"devDependencies": {
"@types/node": "^15.3.0",
"@typescript-eslint/eslint-plugin": "^4.23.0",
"@typescript-eslint/parser": "^4.23.0",
"eslint": "^7.26.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-jest": "^24.3.6",
"eslint-plugin-prettier": "^3.4.0",
"husky": "^6.0.0",
"lint-staged": "^11.0.0",
"nodemon": "^2.0.7",
"prettier": "^2.3.0",
"standard": "^16.0.3",
"ts-node": "^9.1.1",
"typescript": "^4.2.4"
},
"author": {
"name": "Matteo Maronati",
"email": "mail@matteo.land",
"url": "https://matteo.land"
},
"license": "WTFPL",
"repository": {
"url": "https://github.com/MattAndDev/ts-done-yet"
},
"lint-staged": {
"**/*.ts": [
"prettier --write",
"eslint ./source --ext .ts --fix"
]
}
}