-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
59 lines (59 loc) · 1.41 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
{
"name": "jest-each",
"version": "0.5.0",
"description": "Parameterised tests for Jest",
"main": "dist/index.js",
"files": [
"dist",
"README.md"
],
"scripts": {
"build": "babel src -d dist --ignore *.test.js",
"prepublish": "npm run build",
"test": "jest --testPathPattern=src",
"test:coveralls": "npm run test:coverage && cat ./coverage/lcov.info | coveralls",
"test:coverage": "jest --coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mattphillips/jest-each.git"
},
"keywords": [
"jest",
"parameterised",
"test",
"each"
],
"author": "Matt Phillips (mattphillips)",
"license": "MIT",
"bugs": {
"url": "https://github.com/mattphillips/jest-each/issues"
},
"homepage": "https://github.com/mattphillips/jest-each#readme",
"devDependencies": {
"babel-cli": "^6.24.0",
"babel-core": "^6.24.0",
"babel-jest": "^19.0.0",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-gwt": "^1.0.0",
"babel-plugin-transform-es2015-modules-umd": "^6.24.0",
"babel-preset-es2015": "^6.24.0",
"babel-preset-stage-0": "^6.22.0",
"coveralls": "^2.12.0",
"jest": "^19.0.2"
},
"babel": {
"presets": [
"stage-0",
"es2015"
],
"plugins": [
"add-module-exports",
"transform-es2015-modules-umd",
"gwt"
]
},
"dependencies": {
"sprintf-js": "^1.0.3"
}
}