-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 2.12 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
58
59
60
61
62
63
64
65
66
67
68
{
"name": "@gebruederheitz/debuggable",
"version": "3.0.4",
"description": "Flexible debug output for browser applications.",
"source": "src/index.ts",
"module": "dist/index.mjs",
"main": "dist/index.js",
"browserslist": ">0.2% and not dead, ie 11",
"types": "dist/types.d.ts",
"private": false,
"scripts": {
"build": "parcel build",
"lint": "npm run lint:tsc && npm run lint:prettier",
"lint:tsc": "tsc --noEmit",
"lint:prettier": "prettier -c src/",
"release": "release-it --only-version",
"pretest": "rm -rf test/fixtures/build",
"test": "npm run test:build-fixtures && mocha test/**/*.spec.mjs",
"test:build-fixtures": "npm run test:build-fixtures-node && npm run test:build-fixtures-browser",
"test:build-fixtures-node": "tsc -p test/fixtures/tsconfig.json --outDir test/fixtures/build/node/",
"test:build-fixtures-browser": "rollup --config test/fixtures/rollup.config.mjs",
"watch": "parcel watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gebruederheitz/debuggable.git"
},
"keywords": [
"debug",
"log",
"console"
],
"author": "Andreas Maros <andreas.maros@gebruederheitz.de>",
"license": "GPL-3.0-only",
"bugs": {
"url": "https://github.com/gebruederheitz/debuggable/issues"
},
"homepage": "https://github.com/gebruederheitz/debuggable#readme",
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@parcel/packager-ts": "^2.9.2",
"@parcel/transformer-typescript-types": "^2.9.2",
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-typescript": "^11.1.6",
"@types/node": "^20.12.4",
"@types/symbol-tree": "^3.2.5",
"@types/uuid": "^9.0.8",
"chai": "^5.1.0",
"happy-dom": "^14.7.1",
"mocha": "^10.4.0",
"parcel": "^2.9.2",
"prettier": "^2.3.2",
"release-it": "^15.10.3",
"rollup": "^4.14.3",
"sinon": "^17.0.1",
"typescript": "^5.1.3",
"when-dom-ready": "^1.2.12"
},
"dependencies": {
"@swc/helpers": "^0.5.1",
"mitt": "^3.0.1",
"symbol-tree": "^3.2.4",
"uuid": "^9.0.1"
}
}