-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.72 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.72 KB
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
{
"name": "graphql2ts",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"bin": {
"graphql2ts": "./bin/cli"
},
"dependencies": {
"@babel/generator": "^7.6.2",
"@babel/parser": "^7.6.2",
"ast-types": "^0.13.2",
"graphql": "^14.5.8",
"prettier": "^1.18.2",
"yargs": "^14.0.0"
},
"devDependencies": {
"@babel/cli": "7.6.2",
"@babel/core": "7.6.2",
"@babel/node": "7.6.2",
"@babel/plugin-proposal-async-generator-functions": "7.2.0",
"@babel/plugin-proposal-class-properties": "7.5.5",
"@babel/plugin-proposal-export-default-from": "7.5.2",
"@babel/plugin-proposal-export-namespace-from": "7.5.2",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.4.4",
"@babel/plugin-proposal-object-rest-spread": "7.6.2",
"@babel/plugin-proposal-optional-chaining": "^7.6.0",
"@babel/plugin-transform-async-to-generator": "7.5.0",
"@babel/plugin-transform-flow-strip-types": "7.4.4",
"@babel/preset-env": "7.6.2",
"@babel/preset-flow": "7.0.0",
"@babel/preset-react": "7.0.0",
"@babel/preset-typescript": "7.6.0",
"@babel/register": "7.6.2",
"@types/graphql": "^14.5.0",
"@types/jscodeshift": "^0.6.3",
"babel-jest": "^24.9.0",
"babel-plugin-jest-hoist": "^24.9.0",
"esm": "^3.2.25",
"jest": "^24.9.0",
"jscodeshift": "^0.6.4",
"typescript": "^3.6.3"
},
"scripts": {
"start": "node babelx.js ./src/index.ts",
"build": "rm -rf lib/* && babel src --extensions \".es6,.js,.es,.jsx,.mjs,.ts,.tsx\" --ignore __test__,__testfixtures__,*.spec.ts --out-dir lib",
"prepublish": "npm run build",
"test": "jest",
"watch": "babel --extensions \".es6,.js,.es,.jsx,.mjs,.ts,.tsx\" -w -d ./lib ./src"
}
}