-
Notifications
You must be signed in to change notification settings - Fork 37
/
Copy pathpackage.json
47 lines (47 loc) · 1.02 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
{
"name": "sorcery",
"description": "Resolve a chain of sourcemaps back to the original source",
"version": "1.0.0",
"author": "Rich Harris",
"repository": "https://github.com/Rich-Harris/sorcery",
"type": "module",
"exports": {
".": {
"types": "./types/index.d.ts",
"default": "./src/index.js"
}
},
"license": "MIT",
"dependencies": {
"@jridgewell/sourcemap-codec": "^1.4.14",
"minimist": "^1.2.0",
"tiny-glob": "^0.2.9"
},
"devDependencies": {
"@types/node": "^20.14.2",
"coffee-script": "^1.10.0",
"less": "^2.6.1",
"prettier": "^3.3.2",
"rimraf": "^5.0.7",
"source-map": "^0.5.3",
"typescript": "^5.4.5",
"uglify-js": "^2.6.2"
},
"bin": {
"sorcery": "bin/sorcery"
},
"scripts": {
"build": "tsc",
"prepare-tests": "node test/samples/prepare-tests.js",
"prepublishOnly": "pnpm test && pnpm build",
"lint": "prettier .",
"format": "prettier --write .",
"test": "node test/sorcery.test.js"
},
"files": [
"src/",
"bin/",
"README.md"
],
"packageManager": "[email protected]"
}