-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 1.03 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
{
"name": "char-source",
"version": "0.0.0",
"description": "Trace characters back to their source locations in JavaScript literals.",
"license": "ISC",
"author": "Francesco Trotta <[email protected]> (https://github.com/fasttime)",
"files": [
"lib"
],
"repository": {
"type": "git",
"url": "git+https://github.com/origin-1/char-source.git"
},
"scripts": {
"build": "npm install && npm run build-no-install",
"build-no-install": "npm run clean && npm run lint && npm run coverage",
"clean": "node dev/clean.mjs",
"coverage": "node dev/coverage.mjs",
"lint": "eslint . --format compact",
"release": "npm version -m \"Version %s\"",
"test": "mocha --check-leaks spec.js"
},
"devDependencies": {
"@origin-1/eslint-config": "^0.22.1",
"c8js": "^0.6.1",
"eslint": "^8.56.0",
"globals": "^13.24.0",
"mocha": "^10.2.0"
},
"engines": {
"node": ">=18"
},
"exports": {
".": "./lib/index.js",
"./package.json": "./package.json"
},
"types": "lib/index.d.ts"
}