-
-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
57 lines (57 loc) · 1.59 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
{
"name": "javascript-plugin-architecture-with-typescript-definitions",
"version": "0.0.0-development",
"description": "Plugin architecture example with full TypeScript support",
"type": "module",
"exports": {
".": "./index.js",
"./plugins/foo": "./plugins/foo/index.js",
"./plugins/bar": "./plugins/bar/index.js",
"./plugins/void": "./plugins/void/index.js"
},
"types": "./index.d.ts",
"scripts": {
"lint": "prettier --check '*.{md,json,js,ts}' 'examples/**' 'plugins/**'",
"lint:fix": "prettier --write '*.{md,json,js,ts}' 'examples/**' 'plugins/**'",
"test": "npm run -s test:code && npm run -s test:typescript && npm run -s test:coverage && npm run -s lint",
"test:code": "c8 uvu . '^(examples/.*/)?test.js$'",
"test:coverage": "c8 check-coverage",
"test:typescript": "for d in examples/* ; do echo $d; tsd $d; if [ $? -eq 0 ]; then echo ok; else exit 1; fi; done"
},
"repository": "github:gr2m/javascript-plugin-architecture-with-typescript-definitions",
"keywords": [
"typescript",
"plugin",
"architecture"
],
"author": "Gregor Martynus (https://twitter.com/gr2m)",
"contributors": [
{
"name": "Karol Majewski",
"url": "https://github.com/karol-majewski"
}
],
"license": "ISC",
"devDependencies": {
"c8": "^10.0.0",
"prettier": "^3.0.0",
"tsd": "^0.29.0",
"uvu": "^0.5.1"
},
"c8": {
"lines": 100,
"branches": 100,
"functions": 100,
"statements": 100
},
"renovate": {
"extends": [
"github>gr2m/.github"
]
},
"release": {
"branches": [
"main"
]
}
}