-
Notifications
You must be signed in to change notification settings - Fork 27
/
package.json
39 lines (39 loc) · 1.15 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
{
"name": "custom-elements-manifest",
"version": "2.1.0",
"description": "A file format for describing custom elements",
"type": "module",
"main": "schema.json",
"scripts": {
"format": "prettier schema.d.ts src/**/*.ts --write",
"build": "npm run build:ts && npm run build:schema",
"build:ts": "tsc",
"build:schema": "typescript-json-schema --required --ignoreErrors schema.d.ts -o schema.json Package",
"test": "node ./test/schema_test.js",
"prepublishOnly": "npm run build"
},
"files": [
"schema.json",
"schema.d.ts"
],
"types": "schema.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/webcomponents/custom-elements-manifest.git"
},
"keywords": [],
"author": "The Polymer Authors",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/webcomponents/custom-elements-manifest/issues"
},
"homepage": "https://github.com/webcomponents/custom-elements-manifest#readme",
"devDependencies": {
"jsonschema": "^1.4.0",
"prettier": "^2.2.1",
"tslib": "^2.4.0",
"typescript": "~4.8.0",
"typescript-json-schema": "^0.54.0",
"uvu": "^0.5.3"
}
}