-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 855 Bytes
/
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
{
"name": "autobarrel",
"version": "1.2.0",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"license": "MIT",
"bin": {
"autobarrel": "dist/cli.js"
},
"scripts": {
"build": "tsc",
"clean": "rm -rf dist",
"prepublish": "yarn clean && yarn build && chmod +x dist/cli.js",
"test": "node ./node_modules/.bin/jest --runInBand",
"watch": "tsc --watch"
},
"dependencies": {
"chokidar": "^3.4.0",
"glob": "^7.1.6",
"minimist": "^1.2.5",
"tslib": "^2.0.0"
},
"devDependencies": {
"@types/fs-extra": "^9.0.0",
"@types/glob": "5.0.35",
"@types/jest": "^25.2.2",
"@types/minimist": "^1.2.0",
"@types/prettier": "^2.0.0",
"fs-extra": "^9.0.0",
"jest": "^26.0.1",
"p-defer": "3.0.0",
"prettier": "^2.0.5",
"ts-jest": "^26.0.0",
"typescript": "^3.9.2"
}
}