-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
82 lines (82 loc) · 1.88 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
79
80
81
82
{
"name": "tupe",
"version": "0.0.0-alpha.3",
"description": "Generic unit-testing framework for front-end",
"main": "lib/index.js",
"bin": "bin/tupe",
"repository": "https://github.com/jl-/tupe.git",
"author": "z.cius <[email protected]>",
"license": "MIT",
"scripts": {
"build": "babel src -d lib --copy-files",
"example": "./bin/tupe",
"test": "cross-env NODE_ENV=test nyc ava"
},
"files": [
"bin",
"lib"
],
"keywords": [
"unit",
"test",
"testing",
"tupe",
"runner",
"assert",
"tdd",
"puppeteer"
],
"dependencies": {
"@babel/runtime": "^7.1.2",
"babel-preset-power-assert": "^3.0.0",
"chalk": "^2.4.1",
"debug": "^4.1.0",
"diff-match-patch": "^1.0.4",
"figures": "^2.0.0",
"fs-extra": "^7.0.0",
"glob": "^7.1.3",
"istanbul-api": "^2.0.6",
"istanbul-lib-coverage": "^2.0.1",
"ora": "^3.0.0",
"parcel-bundler": "^1.10.2",
"portfinder": "^1.0.17",
"power-assert": "^1.6.1",
"power-assert-context-formatter": "^1.2.0",
"power-assert-renderer-base": "^1.1.1",
"puppeteer": "^1.9.0",
"sourcemapped-stacktrace": "^1.1.9",
"string-hash": "^1.1.3",
"type-name": "^2.0.2",
"yargs": "^12.0.2"
},
"devDependencies": {
"@babel/cli": "^7.1.2",
"@babel/core": "^7.1.2",
"@babel/plugin-proposal-class-properties": "^7.1.0",
"@babel/plugin-proposal-function-bind": "^7.0.0",
"@babel/plugin-transform-runtime": "^7.1.0",
"@babel/preset-env": "^7.1.0",
"@babel/register": "^7.0.0",
"ava": "^1.0.0-beta.8",
"cross-env": "^5.2.0",
"nyc": "^13.1.0",
"testdouble": "^3.8.2"
},
"ava": {
"files": [
"test/**/*.js"
],
"require": [
"@babel/register"
],
"verbose": true,
"babel": {
"testOptions": {
"babelrc": false
}
}
},
"nyc": {
"report-dir": "test/coverage"
}
}