forked from istanbuljs/babel-plugin-istanbul
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 1.95 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 1.95 KB
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
{
"name": "@direct-democracy-solutions/babel-plugin-istanbul",
"version": "8.0.4",
"author": "Thai Pangsakulyanont @dtinth",
"license": "BSD-3-Clause",
"description": "A babel plugin that adds istanbul instrumentation to ES6 code",
"main": "lib/index.js",
"files": [
"lib"
],
"dependencies": {
"@babel/helper-plugin-utils": "^7.0.0",
"@istanbuljs/load-nyc-config": "^1.0.0",
"@istanbuljs/schema": "^0.1.3",
"istanbul-lib-instrument": "^6.0.2",
"test-exclude": "^7.0.1"
},
"devDependencies": {
"@babel/cli": "^7.24.1",
"@babel/core": "^7.24.1",
"@babel/plugin-transform-block-scoping": "^7.24.1",
"@babel/plugin-transform-modules-commonjs": "^7.24.1",
"@babel/register": "^7.23.7",
"chai": "^4.2.0",
"coveralls": "^3.1.1",
"cross-env": "^10.1.0",
"mocha": "^11.7.4",
"nyc": "^17.1.0",
"pmock": "^0.2.3",
"standard": "^17.1.2"
},
"workspaces": [
"test/babel-8"
],
"scripts": {
"coverage": "nyc report --reporter=text-lcov | coveralls",
"release": "babel src --out-dir lib",
"pretest": "standard && npm run release",
"test": "cross-env NODE_ENV=test nyc --reporter=lcov --reporter=text mocha --timeout 5000 test/*.js",
"prepublishOnly": "npm test && npm run release"
},
"standard": {
"ignore": [
"fixtures/*.js"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/direct-democracy-solutions/babel-plugin-istanbul.git"
},
"keywords": [
"istanbul",
"babel",
"plugin",
"instrumentation"
],
"nyc": {
"include": [
"src/*.js",
"fixtures/should-cover.js"
],
"require": [
"@babel/register"
],
"sourceMap": false,
"instrument": false
},
"bugs": {
"url": "https://github.com/direct-democracy-solutions/babel-plugin-istanbul/issues"
},
"homepage": "https://github.com/direct-democracy-solutions/babel-plugin-istanbul#readme",
"engines": {
"node": ">=18"
}
}