-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathpackage.json
41 lines (41 loc) · 1017 Bytes
/
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
{
"name": "babel-tape-runner",
"version": "3.0.0",
"description": "Babel + Tape for running your ES Next tests",
"bin": "./bin/babel-tape-runner",
"repository": {
"type": "git",
"url": "https://github.com/wavded/babel-tape-runner.git"
},
"scripts": {
"pretest": "cp .testbabelrc .babelrc",
"test": "standard bin/babel-tape-runner test.js && node bin/babel-tape-runner test.js",
"posttest": "rm .babelrc"
},
"keywords": [
"babel",
"tape",
"tests",
"testing",
"harmony",
"es6",
"esnext"
],
"author": "Marc Harter <wavded@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/wavded/babel-tape-runner/issues"
},
"homepage": "https://github.com/wavded/babel-tape-runner",
"dependencies": {
"@babel/core": "^7.0.0",
"@babel/polyfill": "^7.0.0",
"@babel/register": "^7.0.0",
"glob": "^6.0.1"
},
"devDependencies": {
"@babel/preset-env": "^7.0.0",
"standard": "^12.0.1",
"tape": "^4.0.2"
}
}