forked from stcheng/gulp-flowtype
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.28 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
{
"name": "gulp-flowtype",
"version": "0.4.2",
"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": "./node_modules/.bin/jshint **.js && flow check --lib ./declarations/",
"test": "6to5 -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": "6to5 -d lib index.js"
},
"dependencies": {
"event-stream": "~3.2.0",
"flow-bin": "~0.1.1",
"flow-to-jshint": "~0.2.0",
"gulp-util": "~3.0.1",
"jshint": "^2.5.10",
"jshint-stylish": "~1.0.0",
"log-symbols": "^1.0.1",
"q": "^1.1.2",
"through2": "~0.6.3"
},
"devDependencies": {
"coveralls": "~2.11.2",
"istanbul": "~0.3.2",
"mocha": "~2.1.0",
"mocha-lcov-reporter": "~0.0.1",
"should": "~4.4.2",
"6to5": "2.13.3"
},
"engines": {
"node": ">=0.8.0",
"npm": ">=1.2.10"
},
"license": "MIT"
}