-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.4 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
{
"name": "waddle",
"description": "",
"version": "1.0.4",
"private": false,
"homepage": "https://githu.com/maxbarsbukov/waddle",
"author": "Max Barsukov",
"repository": {
"type": "git",
"url": "https://github.com/maxbarsukov/waddle.git"
},
"bugs": {
"url": "https://github.com/maxbarsukov/waddle/issues"
},
"type": "commonjs",
"main": "lib/cli/index.js",
"types": "lib/cli/index.d.ts",
"bin": {
"waddle": "bin/waddle.js"
},
"files": [
"lib"
],
"exports": {
".": {
"require": "./lib/index.js",
"default": "./lib/index.js"
}
},
"scripts": {
"clean": "rimraf \"*.tsbuildinfo\" lib",
"build": "npm run build:cjs",
"build:cjs": "tsc -p .",
"start": "ts-node src/cli/index.ts",
"test": "jest",
"lint": "eslint --ext ts,json src",
"lint:fix": "eslint --ext ts,json --fix src",
"codecov": "codecov"
},
"dependencies": {
"readline-sync": "^1.4.10"
},
"devDependencies": {
"@types/jest": "^27.4.0",
"@types/node": "^17.0.8",
"@types/readline-sync": "^1.4.4",
"@typescript-eslint/eslint-plugin": "^5.9.0",
"@typescript-eslint/parser": "^5.9.0",
"codecov": "^3.8.3",
"eslint": "^8.6.0",
"eslint-config-airbnb-typescript": "^16.1.0",
"jest": "^27.4.7",
"rimraf": "^3.0.2",
"ts-jest": "^27.1.2",
"ts-node": "^10.4.0",
"typescript": "^4.5.4"
},
"license": "MIT"
}