-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1 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
{
"name": "@rr0/facts",
"type": "module",
"author": "Jérôme Beau",
"version": "0.1.11",
"description": "Facts representation API",
"exports": "./dist/index.js",
"types": "./dist/index.d.ts",
"license": "MIT",
"homepage": "https://github.com/RR0/facts#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/RR0/facts.git"
},
"scripts": {
"clean": "rm -Rf dist && rm -Rf node_modules && rm package-lock.json",
"prebuild": "npm install",
"build": "tsc",
"prepublishOnly": "npm run build && npm test",
"test": "NODE_OPTIONS=--experimental-vm-modules jest"
},
"dependencies": {
"@rr0/common": "~1.1.3",
"@rr0/lang": "~0.1.12"
},
"devDependencies": {
"@types/jest": "^29.5.14",
"jest": "^29.7.0",
"ts-jest": "^29.2.5",
"typescript": "5.6.3"
},
"keywords": [
"facts",
"people",
"organization",
"event",
"place",
"timeline",
"HTML",
"rr0"
],
"publishConfig": {
"access": "public"
}
}