UNPKG

928 BJSONView Raw
1{
2 "name": "gulp-jasmine",
3 "version": "4.0.0",
4 "description": "Run Jasmine tests",
5 "license": "MIT",
6 "repository": "sindresorhus/gulp-jasmine",
7 "author": {
8 "email": "sindresorhus@gmail.com",
9 "name": "Sindre Sorhus",
10 "url": "sindresorhus.com"
11 },
12 "engines": {
13 "node": ">=4"
14 },
15 "scripts": {
16 "test": "xo && ava"
17 },
18 "files": [
19 "index.js"
20 ],
21 "keywords": [
22 "bdd",
23 "framework",
24 "gulpplugin",
25 "jasmine",
26 "qunit",
27 "runner",
28 "spec",
29 "tap",
30 "tdd",
31 "test",
32 "testing",
33 "unit"
34 ],
35 "dependencies": {
36 "arrify": "^1.0.1",
37 "jasmine": "^3.1.0",
38 "jasmine-terminal-reporter": "^1.0.3",
39 "plugin-error": "^1.0.1",
40 "through2": "^2.0.3"
41 },
42 "devDependencies": {
43 "ava": "*",
44 "gulp": "^4.0.0",
45 "vinyl": "^2.1.0",
46 "xo": "*"
47 },
48 "xo": {
49 "envs": [
50 "jasmine"
51 ]
52 },
53 "ava": {
54 "serial": true
55 }
56}