-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.32 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
{
"name": "figon",
"version": "0.0.9",
"main": "dist/index.js",
"repository": "git@github.com:uznam8x/deact.git",
"author": "uznam8x <uznam8x@gmail.com>",
"license": "MIT",
"bin": {
"figon": "./dist/bin/index.js"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"test": "jest",
"start": "tsc-watch src/bin/index.ts --declaration --resolveJsonModule --esModuleInterop --outDir ./dist --onSuccess \"node dist/bin/index.js\"",
"build": "rm -rf dist && tsc src/bin/index.ts --declaration --outDir dist"
},
"dependencies": {
"axios": "^0.26.1",
"commander": "^9.1.0",
"dotenv": "^16.0.0",
"fs-extra": "^10.0.1",
"mkdirp": "^1.0.4",
"ramda": "^0.28.0",
"tsc-watch": "^5.0.3",
"typescript": "^4.6.3"
},
"devDependencies": {
"@babel/preset-typescript": "^7.16.7",
"@types/fs-extra": "^9.0.13",
"@types/mkdirp": "^1.0.2",
"@types/node": "^17.0.23",
"@types/ramda": "^0.28.9",
"@types/jest": "^27.4.1",
"jest": "^27.5.1",
"ts-jest": "^27.1.4"
},
"jest": {
"verbose": true,
"transform": {
"^.+\\.ts$": "ts-jest"
},
"testRegex": "\\.test\\.ts$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"json"
],
"globals": {
"ts-jest": {
"diagnostics": true
}
}
}
}