-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.38 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
{
"name": "typectl",
"version": "2.28.1",
"description": "TypeScript control flow library",
"main": "./dist/cjs/typectl.js",
"scripts": {
"build": "./bin/build",
"prepare": "husky install; npm run build",
"start": "./bin/watch",
"test": "NODE_ENV=\"${NODE_ENV:-test}\" mocha",
"update": "ncu -u"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/winton/typectl.git"
},
"author": "Winton Welsh <mail@wintoni.us>",
"license": "MIT",
"bugs": {
"url": "https://github.com/winton/typectl/issues"
},
"homepage": "https://github.com/winton/typectl#readme",
"dependencies": {
"web-streams-polyfill": "3.2.0"
},
"devDependencies": {
"@types/fs-extra": "9.0.13",
"@types/mocha": "9.1.0",
"@types/node": "17.0.21",
"@typescript-eslint/eslint-plugin": "5.14.0",
"@typescript-eslint/parser": "5.14.0",
"eslint": "8.11.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-prettier": "4.0.0",
"expect": "27.5.1",
"husky": "7.0.4",
"lint-staged": "12.3.5",
"mocha": "9.2.2",
"npm-check-updates": "16.1.0",
"prettier": "2.5.1",
"source-map-support": "0.5.21",
"typescript": "4.6.2"
},
"lint-staged": {
"*.{css,json,md}": [
"prettier --write",
"git add"
],
"*.{js,jsx,ts}": [
"eslint --ignore-path .gitignore --fix",
"git add"
]
}
}