-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
58 lines (58 loc) · 1.78 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
58
{
"name": "@dcic/signature-commons-schema",
"version": "1.5.17",
"apiVersion": "v6",
"description": "JSON-Schema validators for signature commons entities",
"bin": {
"signature-commons-schema": "dist/cli.js"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"directories": {
"core": "core",
"dist": "dist",
"meta": "meta"
},
"scripts": {
"build": "tsc && npm run generate:json",
"clean": "test -d ./dist && rm -r ./dist || exit 0",
"generate:json": "ts-node bin/generate_json.ts",
"generate:ts": "ts-node bin/generate_ts.ts",
"generate": "npm run generate:json && npm run generate:ts",
"prepublishOnly": "npm run clean && npm run build && npm run generate",
"test": "npm run build && mocha -r ts-node/register src/**/*.test.ts --timeout 10000"
},
"repository": {
"type": "git",
"url": "git+https://github.com/maayanlab/signature-commons-schema.git"
},
"author": "Daniel J. B. Clarke <u8sand@gmail.com>",
"license": "Attribution-NonCommercial-ShareAlike 4.0 International",
"bugs": {
"url": "https://github.com/maayanlab/signature-commons-schema/issues"
},
"homepage": "https://github.com/maayanlab/signature-commons-schema#readme",
"dependencies": {
"@types/debug": "0.0.31",
"@types/node-fetch": "^2.3.7",
"ajv": "^6.10.0",
"assert": "^2.0.0",
"debug": "^4.1.1",
"node-fetch": "^2.6.1",
"require-from-web": "^1.2.0"
},
"devDependencies": {
"@types/glob": "^7.1.1",
"@types/mkdirp": "^0.5.2",
"@types/mocha": "^5.2.7",
"@types/node": "^10.14.18",
"glob": "^7.1.4",
"json-schema-to-typescript": "^6.1.3",
"mkdirp": "^0.5.1",
"mocha": "^5.2.0",
"root-require": "^0.3.1",
"ts-node": "^7.0.1",
"tslint": "^5.17.0",
"typescript": "^3.6.3"
}
}