forked from webcomponents/custom-elements-manifest
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
31 lines (31 loc) · 914 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
{
"name": "custom-elements-manifest",
"version": "0.1.0",
"description": "A file format for describing custom elements",
"main": "schema.json",
"scripts": {
"format": "prettier schema.d.ts --write",
"build": "typescript-json-schema --required --ignoreErrors schema.d.ts -o schema.json Package",
"prepublishOnly": "npm run build"
},
"files": [
"schema.json",
"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": {
"prettier": "^2.2.1",
"typescript": "^4.1.5",
"typescript-json-schema": "^0.49.0"
}
}