forked from Khan/flow-to-ts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.55 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
{
"name": "@khanacademy/flow-to-ts",
"version": "0.1.6",
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/khan/flow-to-ts"
},
"main": "src/convert.js",
"bin": {
"flow-to-ts": "./src/flow-to-ts.js"
},
"license": "MIT",
"dependencies": {
"@babel/core": "^7.4.0",
"@babel/parser": "^7.4.2",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.4.4",
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@babel/plugin-syntax-optional-chaining": "^7.2.0",
"@babel/preset-flow": "^7.0.0",
"@babel/types": "^7.4.0",
"commander": "^2.19.0",
"glob": "^7.1.3",
"prettier": "^1.16.4",
"trim-right": "^1.0.1"
},
"devDependencies": {
"@types/jest": "^24.0.11",
"@types/typescript": "^2.0.0",
"codecov": "^3.2.0",
"flow-bin": "^0.98.0",
"husky": "^1.3.1",
"jest": "^24.5.0",
"jest-mock-console": "^0.4.2",
"jest-mock-process": "^1.2.0",
"pretty-quick": "^1.10.0",
"tmp": "^0.1.0",
"typescript": "^3.4.5"
},
"scripts": {
"test": "jest",
"coverage": "jest --coverage --collectCoverageFrom=src/**/*.js --coveragePathIgnorePatterns=src/flow-to-ts.js",
"pretty-quick": "prettier src/*.js test/*.js playground/src/*.tsx babel-generator/lib/**/*.js babel-traverse/lib/**/*.js --write"
},
"husky": {
"hooks": {
"pre-push": "npm test",
"pre-commit": "pretty-quick --staged"
}
},
"jest": {
"setupFilesAfterEnv": [
"jest-mock-console/dist/setupTestFramework.js"
]
}
}