-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
65 lines (65 loc) · 1.84 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
{
"name": "karma-tap",
"version": "4.2.0",
"description": "Karma Adapter to tape testing framework",
"repository": {
"type": "git",
"url": "https://github.com/bySabi/karma-tap.git"
},
"homepage": "https://github.com/bySabi/karma-tap.git",
"bugs": "https://github.com/bySabi/karma-tap/issues",
"keywords": [
"karma",
"karma-plugin",
"karma-adapter",
"karma-framework",
"tape",
"tap"
],
"main": "index.js",
"scripts": {
"clean": "rimraf lib",
"build-adapter": "browserify src/adapter.js | babel --out-file lib/adapter.js --presets=env",
"build-npm": "npm run clean && mkdirp lib && npm run build-adapter",
"lint": "semistandard --fix --verbose | snazzy",
"karma": "karma start karma.conf.js",
"testonly": "npm run karma",
"test": "npm run lint && npm run testonly",
"travis": "npm run build-npm && npm test",
"appveyor": "npm run build-npm && npm test",
"prepare": "npm run build-npm"
},
"peerDependencies": {
"karma": ">=1.0.0"
},
"devDependencies": {
"babel-cli": "6.x.x",
"babel-preset-env": "1.x.x",
"browserify": "16.x.x",
"jsdom": "9.x.x",
"karma": "2.x.x",
"karma-browserify": "5.x.x",
"karma-jsdom-launcher": "6.x.x",
"karma-tap-pretty-reporter": "4.x.x",
"mkdirp": "^0.5.1",
"rimraf": "2.x.x",
"semistandard": "12.x.x",
"snazzy": "7.x.x",
"tap": "11.x.x",
"tap-parser": "7.x.x",
"tape": "4.x.x",
"watchify": "3.x.x"
},
"author": "Tom MacWright",
"contributors": [
"bySabi Files <> (https://github.com/bySabi)",
"eiriksm <> (https://github.com/eiriksm)",
"Mike S <> (https://github.com/SpainTrain)",
"marques-work <> (https://github.com/marques-work)",
"wesley luyten <> (https://github.com/luwes)"
],
"license": "ISC",
"dependencies": {
"babel-polyfill": "^6.26.0"
}
}