-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 1.6 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
{
"name": "ppmdev",
"version": "0.4.6",
"private": true,
"description": "development environment for ppx-plugin-manager",
"author": "tar80",
"license": "MIT",
"keywords": [],
"main": "",
"type": "module",
"scripts": {
"deno": "deno run --allow-read",
"packadd": "npm init --scope ppmdev -w packages/${npm_config_name}",
"ppmver": "ppmversion",
"test": "jest"
},
"jest": {
"verbose": true,
"coverageProvider": "v8",
"preset": "ts-jest",
"roots": [
"<rootDir>/modules",
"<rootDir>/parsers",
"<rootDir>/polyfills"
],
"testEnvironment": "node",
"testMatch": [
"**/__tests__/**/*.ts",
"**/?(*.)+test.ts"
]
},
"workspaces": [
"modules",
"packages/*",
"parsers",
"polyfills",
"tsconfigs",
"types/ppx-script"
],
"devDependencies": {
"@babel/cli": "^7.22.9",
"@babel/core": "^7.22.9",
"@babel/plugin-transform-for-of": "^7.22.5",
"@babel/preset-env": "^7.22.9",
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-commonjs": "^25.0.3",
"@rollup/plugin-node-resolve": "^15.1.0",
"@rollup/plugin-strip": "^3.0.2",
"@rollup/plugin-swc": "^0.3.1",
"@rollup/plugin-terser": "^0.4.3",
"iconv-lite": "^0.6.3",
"jest": "^29.6.1",
"ppmapps": "file:apps",
"rollup": "^4.18.0",
"ts-jest": "^29.1.1",
"tslib": "^2.6.0",
"typescript": "^5.1.6"
},
"dependencies": {
"@types/activex-adodb": "^6.1.8",
"@types/activex-scripting": "^1.0.8",
"@types/jest": "^29.5.3",
"@types/ppx-script": "^0.1.0",
"@types/windows-script-host": "^5.8.3"
}
}