-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.05 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.05 KB
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
{
"name": "@financial-times/content-tree",
"description": "content tree format",
"version": "0.11.0",
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Financial-Times/content-tree.git"
},
"scripts": {
"build": "bash build.bash",
"test": "npm --workspaces test --if-present; bash test.bash",
"test:schemas": "bash test.bash"
},
"keywords": [
"unified",
"tree",
"ft",
"article",
"content",
"body"
],
"files": [
"content-tree.d.ts",
"schemas/**/*.json",
"README.md",
"SPEC.md",
"LICENSE"
],
"types": "content-tree.d.ts",
"author": "The Financial Times Ltd",
"license": "MIT",
"bugs": {
"url": "https://github.com/Financial-Times/content-tree/issues"
},
"homepage": "https://github.com/Financial-Times/content-tree#readme",
"workspaces": [
"libraries/*",
"tools/*"
],
"devDependencies": {
"ajv": "^8.17.1",
"ajv-cli": "^5.0.0",
"prettier": "^2.8.2",
"tap-xunit": "^2.4.1",
"typescript-json-schema": "^0.62.0"
},
"volta": {
"node": "20.7.0"
}
}