-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 905 Bytes
/
package.json
File metadata and controls
41 lines (41 loc) · 905 Bytes
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": "@apm-js-collab/code-transformer",
"version": "0.13.0",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/nodejs/orchestrion-js.git"
},
"files": [
"./index.js",
"./index.d.ts",
"./lib/**/*.js",
"LICENSE",
"NOTICE"
],
"main": "./index.js",
"types": "./index.d.ts",
"scripts": {
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"test": "node --test tests/tests.test.mjs",
"test:watch": "node --watch --test tests/tests.test.mjs"
},
"devDependencies": {
"@types/node": "^18.0.0",
"eslint": "^9.39.4",
"neostandard": "^0.13.0",
"typescript": "^5.8.3"
},
"volta": {
"node": "22.15.0"
},
"dependencies": {
"@types/estree": "^1.0.8",
"astring": "^1.9.0",
"esquery": "^1.7.0",
"meriyah": "^6.1.4",
"semifies": "^1.0.0",
"source-map": "^0.6.0"
}
}