forked from flow-typed/flow-typed
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 1.93 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
{
"name": "flow-typed",
"version": "2.1.2",
"description": "A repository of high quality flowtype definitions",
"main": "dist/cli.js",
"bin": "dist/cli.js",
"scripts": {
"clean": "rimraf dist",
"build": "mkdirp dist && babel ./src --out-dir=./dist",
"flow": "flow",
"lint": "eslint .",
"prepublish": "mkdirp dist && npm run test",
"test": "npm run clean && npm run build && npm run test-quick",
"test-quick": "jest && npm run lint",
"watch": "mkdirp dist && babel --source-maps --watch=./src --out-dir=./dist"
},
"repository": {
"type": "git",
"url": "git+https://github.com/flowtype/flow-typed.git"
},
"keywords": [
"flow",
"flowtype"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/flowtype/flow-typed/issues"
},
"homepage": "https://github.com/flowtype/flow-typed#readme",
"jest": {
"name": "flow-typed-cli",
"modulePathIgnorePatterns": [
"<rootDir>/dist/.*"
],
"testPathIgnorePatterns": [
"<rootDir>/.*/__[^/]*-fixtures__/.*"
]
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-eslint": "^7.2.3",
"babel-plugin-syntax-async-functions": "^6.5.0",
"babel-plugin-syntax-trailing-function-commas": "^6.22.0",
"babel-plugin-transform-flow-strip-types": "^6.22.0",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-plugin-transform-regenerator": "^6.24.1",
"babel-preset-es2015": "^6.24.1",
"eslint": "^3.16.0",
"eslint-plugin-flow-vars": "^0.4.0",
"flow-bin": "0.50.0",
"jest": "^20.0.4"
},
"dependencies": {
"babel-polyfill": "^6.23.0",
"colors": "^1.1.2",
"fs-extra": "^2.0.0",
"github": "^0.2.4",
"glob": "^7.1.2",
"md5": "^2.1.0",
"mkdirp": "^0.5.1",
"request": "^2.81.0",
"rimraf": "^2.6.0",
"semver": "^5.1.0",
"table": "^3.7.8",
"through": "^2.3.8",
"unzip": "^0.1.11",
"which": "^1.2.14",
"yargs": "^4.2.0"
}
}