-
Notifications
You must be signed in to change notification settings - Fork 62
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.15 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.15 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
{
"name": "jsonc-parser",
"version": "4.0.0-next.1",
"description": "Scanner and parser for JSON with comments.",
"type": "module",
"exports": {
".": {
"types": "./lib/esm/main.d.ts",
"import": "./lib/esm/main.js"
}
},
"types": "./lib/esm/main.d.ts",
"author": "Microsoft Corporation",
"repository": {
"type": "git",
"url": "https://github.com/microsoft/node-jsonc-parser"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/microsoft/node-jsonc-parser/issues"
},
"devDependencies": {
"@types/node": "22.x",
"@typescript-eslint/eslint-plugin": "^8.35.1",
"@typescript-eslint/parser": "^8.35.1",
"eslint": "^9.30.0",
"rimraf": "^6.0.1",
"typescript": "^5.8.3"
},
"scripts": {
"prepack": "npm run clean && npm run compile && npm run test && npm run remove-sourcemap-refs",
"compile": "tsc -p ./src && npm run lint",
"remove-sourcemap-refs": "node ./build/remove-sourcemap-refs.cjs",
"clean": "rimraf lib",
"watch": "tsc -w -p ./src",
"test": "npm run compile && node --enable-source-maps --test ./lib/esm/test/*.test.js",
"lint": "eslint src/**/*.ts"
}
}