-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
71 lines (71 loc) · 2.41 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
{
"name": "ast-i18n",
"version": "1.0.2",
"author": "Sibelius Seraphini <[email protected]> (https://github.com/sibelius)",
"bin": {
"ast-i18n": "./bin/cli"
},
"dependencies": {
"ast-types": "^0.12.2",
"cosmiconfig": "^5.1.0",
"diacritics": "^1.3.0",
"find": "^0.2.9",
"graceful-fs": "^4.1.15",
"jscodeshift-imports": "^1.1.0",
"prettier": "^1.16.4",
"shelljs": "^0.8.3",
"slugify": "^1.3.4",
"yargs": "^12.0.5"
},
"devDependencies": {
"@babel/cli": "^7.0.0",
"@babel/core": "^7.0.0",
"@babel/node": "^7.0.0",
"@babel/plugin-proposal-async-generator-functions": "^7.0.0",
"@babel/plugin-proposal-class-properties": "^7.0.0",
"@babel/plugin-proposal-export-default-from": "^7.0.0",
"@babel/plugin-proposal-export-namespace-from": "^7.0.0",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.10.4",
"@babel/plugin-proposal-object-rest-spread": "^7.0.0",
"@babel/plugin-proposal-optional-chaining": "^7.11.0",
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@babel/plugin-transform-async-to-generator": "^7.0.0",
"@babel/plugin-transform-flow-strip-types": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"@babel/preset-flow": "^7.0.0",
"@babel/preset-react": "^7.0.0",
"@babel/preset-typescript": "^7.0.0",
"@types/babel__core": "^7.0.4",
"@types/babel__generator": "^7.0.1",
"@types/babel__template": "^7.0.1",
"@types/babel__traverse": "^7.0.5",
"@types/cosmiconfig": "^5.0.3",
"@types/diacritics": "^1.3.1",
"@types/find": "^0.2.1",
"@types/graceful-fs": "^4.1.2",
"@types/jest": "^24.0.0",
"@types/jscodeshift": "^0.6.0",
"@types/prettier": "^1.16.0",
"@types/react": "^16.8.2",
"@types/shelljs": "^0.8.2",
"@types/yargs": "^12.0.8",
"babel-jest": "^24.1.0",
"jest": "^24.1.0",
"jscodeshift": "^0.6.3"
},
"license": "MIT",
"main": "index.js",
"scripts": {
"b": "babel-node --extensions \".es6,.js,.es,.jsx,.mjs,.ts,.tsx\"",
"build": "rm -rf lib/* && babel src --extensions \".es6,.js,.es,.jsx,.mjs,.ts,.tsx\" --ignore __test__,__testfixtures__,*.spec.ts --out-dir lib",
"fixtures": "yarn start --src=fixtures",
"prepublish": "npm run build",
"start": "yarn b src/index.ts",
"test": "jest",
"watch": "babel --extensions \".es6,.js,.es,.jsx,.mjs,.ts,.tsx\" -w -d ./lib ./src"
},
"files": [
"lib",
"bin"
]
}