-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 1.31 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": "@novivia/tester",
"version": "1.2.0",
"engines": {
"node": ">=4",
"npm": ">=3"
},
"license": "SEE LICENSE IN LICENSE.md",
"description": "Novivia Node.js module tester.",
"authors": [
"Mathieu M-Gosselin <mathieumg@novivia.com>"
],
"repository": {
"type": "git",
"url": "git@github.com:Novivia/tools.tester.git"
},
"scripts": {
"build": "novivia-builder build",
"lint": "novivia-linter lint",
"pub": "novivia-builder publish",
"release": "novivia-builder release",
"test": "./cliWrapper"
},
"bin": {
"novivia-tester": "./cliWrapper"
},
"novivia-builder": {
"babelPatterns": [
"cli.js",
"monkeyPatch.js"
],
"packagePatterns": [
"cliWrapper"
]
},
"novivia-linter": {
"targets": {
"global": [
"cli.js",
"monkeyPatch.js"
]
}
},
"novivia-tester": {
"coverageLocations": [
"!cli.js",
"!lib/cli.js",
"!monkeyPatch.js"
]
},
"peerDependencies": {
"babel-polyfill": ">= 6.16.0"
},
"devDependencies": {
"@novivia/build-module": "^0.5.2",
"@novivia/linter": "^1.10.1"
},
"dependencies": {
"@novivia/babel": "^1.1.0",
"babel-jest": "^19.0.0",
"jest": "^19.0.2",
"path-exists": "^3.0.0",
"pkginfo-json5": "^0.5.0"
}
}