-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 981 Bytes
/
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
{
"name": "@ppmdev/ppx-plugin-manager",
"version": "0.95.32",
"description": "Paper Plane xUI plugin manager",
"author": "tar80",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/tar80/ppm.git"
},
"bugs": {
"url": "https://github.com/tar80/ppm/issues"
},
"homepage": "https://github.com/tar80/ppm#readme",
"type": "module",
"main": "",
"directories": {
"doc": "doc",
"lib": "dist/lib"
},
"scripts": {
"type": "tsc --noEmit true --skipLibCheck true",
"deno": "deno run --no-check --allow-all --unstable",
"build": "ppmbuild",
"build:prod": "set NODE_ENV=Production&&ppmbuild -- src",
"ppmver": "ppmversion",
"test": "jest"
},
"jest": {
"verbose": true,
"coverageProvider": "v8",
"preset": "ts-jest",
"roots": [
"<rootDir>/src"
],
"testEnvironment": "node",
"testMatch": [
"**/__tests__/**/*.ts",
"**/?(*.)+test.ts"
]
}
}