-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
49 lines (49 loc) · 1.24 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
{
"name": "@neume-network/schema",
"version": "0.8.1",
"description": "A JSON schema for music.",
"main": "./src/schema.mjs",
"types": "index.d.ts",
"directories": {
"test": "test"
},
"scripts": {
"test": "npm run generate:json && ava",
"prepare": "husky install",
"generate:json": "node ./scripts/generate.mjs > schema.json",
"generate:types": "node ./scripts/generate-types.mjs > index.d.ts",
"prettier": "prettier --write ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/neume-network/schema.git"
},
"keywords": [
"music",
"metadata",
"nfts",
"ddex",
"intellectual",
"property",
"license"
],
"author": "Tim Daubenschütz <[email protected]> (https://timdaub.github.io/)",
"license": "LGPL-3.0-only",
"bugs": {
"url": "https://github.com/neume-network/schema/issues"
},
"homepage": "https://github.com/neume-network/schema#readme",
"devDependencies": {
"ajv": "8.11.0",
"ajv-formats": "2.1.1",
"ava": "4.2.0",
"husky": "7.0.4",
"json-schema-to-typescript": "11.0.2",
"lint-staged": "12.4.0",
"mime-db": "1.52.0",
"prettier": "2.6.2"
},
"lint-staged": {
"*.{mjs,js,css,md}": "npm run prettier"
}
}