-
Notifications
You must be signed in to change notification settings - Fork 43
/
Copy pathpackage.json
53 lines (53 loc) · 1.52 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
{
"name": "flow-to-typescript",
"description": "Compile Flow to TypeScript",
"version": "0.0.1",
"main": "./dist/src/index.js",
"types": "./dist/src/index.d.ts",
"bin": {
"flow2ts": "dist/src/cli.js"
},
"repository": "git@github.com:bcherny/flow-to-typescript.git",
"author": "Boris Cherny <bcherny@fb.com>",
"license": "MIT",
"scripts": {
"build": "tsc",
"build:watch": "tsc -w",
"clean": "rm -rf ./dist",
"lint": "tslint src/**/*.ts && npm run prettier:check",
"prettier": "prettier 'src/**/*.[tj]s'",
"prettier:fix": "npm run prettier --write",
"prettier:check": "npm run prettier -l",
"prepublishOnly": "npm run clean && npm run lint && npm run build -- -d",
"pretest": "npm run build",
"tdd": "concurrently -k 'npm run build:watch' 'npm run test:watch'",
"test": "ava --verbose",
"test:debug": "node --inspect-brk ./node_modules/ava/profile.js ./dist/test/test.js",
"test:watch": "ava -w"
},
"dependencies": {
"@babel/generator": "7.0.0-beta.38",
"@babel/traverse": "7.0.0-beta.38",
"@babel/types": "7.0.0-beta.38",
"glob": "^7.1.2",
"lodash": "^4.17.4",
"mz": "^2.7.0"
},
"devDependencies": {
"@types/glob": "^5.0.33",
"@types/lodash": "^4.14.86",
"@types/minimist": "^1.2.0",
"@types/mz": "^0.0.32",
"ava": "^0.24.0",
"concurrently": "^3.5.1",
"flow-bin": "^0.59.0",
"prettier": "^1.15.3",
"tslint": "^5.8.0",
"typescript": "^2.6.2"
},
"ava": {
"files": [
"./dist/test/test.js"
]
}
}