-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
78 lines (78 loc) · 1.96 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
71
72
73
74
75
76
77
78
{
"name": "gulp-jsx-coverage",
"version": "0.4.0",
"description": "Enable istanbul coverage on ES2015/babel or coffee-script/cjsx files when you do mocha/jasmine tests, also deal with sourceMap for coverage report and stack trace.",
"author": "Zordius <zordius@yahoo-inc.com>",
"contributors": [
{
"name": "Zordius Chen",
"email": "zordius@gmail.com"
}
],
"repository": {
"type": "git",
"url": "git://github.com/zordius/gulp-jsx-coverage.git"
},
"keywords": [
"flux",
"react",
"babel",
"6to5",
"es6",
"es2015",
"jsx",
"istanbul",
"coverage",
"mocha",
"jasmine",
"sourceMap",
"stack trace",
"gulp",
"CoffeeScript"
],
"scripts": {
"test": "npm run jasmine && npm run mochaall",
"mocha": "gulp mocha_tests",
"mochaall": "gulp mocha_tests;gulp mocha_emitext_tests;gulp mocha_cover_all_tests",
"jasmine": "gulp jasmine_tests",
"threshold": "gulp mocha_threshold_tests",
"lint": "eslint index.js gulpfile.js test/*.js?"
},
"main": "index.js",
"dependencies": {
"babel-core": "^6.22.1",
"gulp-util": "^3.0.8",
"istanbul-lib-coverage": "^1.0.1",
"istanbul-lib-report": "^1.0.0-alpha.3",
"istanbul-reports": "^1.0.0",
"object.assign": "4.0.4"
},
"devDependencies": {
"babel-eslint": "7.1.1",
"babel-plugin-istanbul": "3.1.2",
"babel-preset-es2015": "6.22.0",
"babel-preset-react": "6.22.0",
"eslint": "3.14.1",
"eslint-plugin-react": "6.9.0",
"gulp": "^3.9.1",
"gulp-mocha": "^3.0.1",
"gulp-jasmine": "2.4.2",
"jsdom": "9.9.1",
"mocha": "3.2.0",
"react": "15.4.2",
"react-addons-test-utils": "15.4.2",
"react-dom": "15.4.2"
},
"engines": {
"node": ">=4.6.0"
},
"bugs": {
"url": "https://github.com/zordius/gulp-jsx-coverage/issues"
},
"licenses": [
{
"type": "MIT",
"url": "https://github.com/zordius/gulp-jex-coverage/blob/master/LICENSE.txt"
}
]
}