-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
82 lines (82 loc) · 2.35 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "@fabiomcosta/mvjs",
"version": "1.16.1",
"description": "Easily move files and directories around your JavaScript project.",
"repository": "https://github.com/fabiomcosta/mvjs",
"main": "lib/index.js",
"types": "lib/src/index.d.ts",
"bin": {
"mvjs": "lib/cli.js"
},
"engines": {
"node": ">=10.0.0",
"npm": ">=6.0.0"
},
"scripts": {
"test": "npm run lint && npm run type-check && npm run unit",
"type-check": "tsc --noEmit",
"type-check:watch": "npm run type-check -- --watch",
"lint": "prettier --write ./src && eslint --ext .js,.jsx,.ts,.tsx --fix src/",
"unit": "npm run build:js && jest",
"prepare": "node -e 'require(`fs-extra`).removeSync(`lib/`)' && npm run build",
"prepublishOnly": "npm t",
"build": "npm run build:types && npm run build:js",
"build:js": "babel src --out-dir lib --extensions \".ts,.tsx\" --source-maps inline",
"build:types": "tsc --emitDeclarationOnly",
"build:watch": "npm run build -- --watch"
},
"keywords": [
"mvjs",
"move",
"movejs",
"movemodule"
],
"jest": {
"testEnvironment": "node",
"testMatch": [
"**/__tests__/**/(*.)(spec|test).(js|jsx|ts|tsx)"
],
"roots": [
"<rootDir>/src/"
]
},
"author": "Fabio Miranda Costa",
"license": "MIT",
"dependencies": {
"@babel/code-frame": "^7.8.3",
"chalk": "^4.0.0",
"core-js": "^3.6.5",
"debug": "^4.1.1",
"enhanced-resolve": "^4.1.1",
"find-up": "^4.1.0",
"fs-extra": "^8.1.0",
"ignore": "^5.1.4",
"isbinaryfile": "^4.0.6",
"jscodeshift": "^0.7.1",
"yargs": "^15.3.1"
},
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.10.2",
"@babel/node": "^7.10.1",
"@babel/preset-env": "^7.10.2",
"@babel/preset-typescript": "^7.10.1",
"@types/babel__code-frame": "^7.0.1",
"@types/debug": "^4.1.5",
"@types/enhanced-resolve": "^3.0.6",
"@types/fs-extra": "^9.0.1",
"@types/jest": "^25.2.3",
"@types/jscodeshift": "^0.7.1",
"@types/yargs": "^15.0.5",
"@typescript-eslint/eslint-plugin": "^3.1.0",
"@typescript-eslint/parser": "^3.1.0",
"babel-jest": "^26.0.1",
"eslint": "^7.2.0",
"eslint-plugin-babel": "^5.3.0",
"eslint-plugin-jest": "^23.13.2",
"jest": "^26.0.1",
"prettier": "^2.0.5",
"ts-jest": "^26.1.0",
"typescript": "^3.9.5"
}
}