-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
57 lines (57 loc) · 1.67 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
{
"author": "Steven Olmsted <[email protected]>",
"babel": {
"plugins": [
"./js/babel-plugin-transform-line.js",
"./test/babel-plugin-transform-some-other-dynamic-code.js"
],
"presets": [
[
"@babel/preset-env",
{
"targets": {
"node": "current"
}
}
]
],
"sourceMaps": "inline"
},
"bugs": "https://github.com/ibi-group/babel-plugin-transform-line/issues",
"description": "Replaces the identifier __line with the source line number",
"devDependencies": {
"@babel/preset-env": "~7.25.2",
"@babel/register": "~7.24.6",
"chai": "~4.4.1",
"isotropic-dev-dependencies": "~0.3.0",
"nyc": "~17.0.0"
},
"engines": {
"node": "^22.5.1",
"npm": "^10.8.2"
},
"files": [
"js/babel-plugin-transform-line.js"
],
"homepage": "https://github.com/ibi-group/babel-plugin-transform-line",
"keywords": [
"babel",
"babel plugin",
"babel-plugin",
"babelplugin",
"isotropic",
"plugin"
],
"license": "BSD-3-Clause",
"main": "js/babel-plugin-transform-line.js",
"name": "babel-plugin-transform-line",
"repository": "github:ibi-group/babel-plugin-transform-line",
"scripts": {
"lint": "eslint js test",
"prepublishOnly": "npm test --coverage",
"pretest": "npm run lint",
"test": "cross-env BABEL_DISABLE_CACHE=1 nyc --require @babel/register -s mocha"
},
"type": "commonjs",
"version": "0.11.0"
}