-
Notifications
You must be signed in to change notification settings - Fork 33
/
package.json
56 lines (56 loc) · 1.46 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
{
"name": "gulp-flowtype",
"version": "1.1.0",
"description": "Run Facebook's Flow in your gulp pipeline",
"keywords": [
"gulp",
"flowtype"
],
"main": "lib/index.js",
"author": {
"name": "Charlie Dowler",
"url": "https://github.com/charliedowler"
},
"repository": "charliedowler/gulp-flowtype",
"scripts": {
"lint": "npm run lint:js && npm run lint:flow",
"lint:js": "jshint **.js",
"lint:flow": "flow check --lib ./declarations/",
"test": "babel -d lib index.js; istanbul test _mocha --report html -- test/*.js --reporter spec",
"coveralls": "istanbul cover ./node_modules/mocha/bin/_mocha --report lcovonly -- -R spec && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage",
"prepublish": "babel -d lib index.js"
},
"dependencies": {
"chalk": "^1.1.3",
"event-stream": "~3.3.0",
"flow-reporter": "~0.1.0",
"gulp-util": "~3.0.1",
"log-symbols": "^1.0.1",
"q": "^1.1.2",
"through2": "~2.0.0"
},
"devDependencies": {
"babel-cli": "^6.3.15",
"babel-preset-es2015": "^6.3.13",
"babel-preset-stage-2": "^6.3.13",
"coveralls": "~2.11.5",
"istanbul": "~0.4.1",
"jshint": "^2.8.0",
"mocha": "~3.0.1",
"should": "~10.0.0"
},
"peerDependencies": {
"flow-bin": "^0.39.0"
},
"engines": {
"node": ">=4.0",
"npm": ">=3.0.10"
},
"babel": {
"presets": [
"es2015",
"stage-2"
]
},
"license": "MIT"
}