-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.22 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
{
"name": "archipelago",
"version": "0.1.0",
"description": "UFO database mapping",
"type": "module",
"exports": "./dist/index.js",
"types": "./dist/index.d.ts",
"directories": {
"doc": "doc"
},
"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"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Javarome/Archipelago.git"
},
"keywords": [
"ufo",
"database",
"mapping",
"unification",
"merge"
],
"author": "Jérôme Beau, RR0",
"license": "ISC",
"bugs": {
"url": "https://github.com/Javarome/Archipelago/issues"
},
"homepage": "https://github.com/Javarome/Archipelago#readme",
"dependencies": {
"ts-jsdk": "~0.1.4",
"fastify": "~4.28.1",
"node-html-parser": "~5.4.2",
"@rr0/common": "~1.0.1",
"@rr0/lang": "~0.1.11",
"@rr0/facts": "~0.1.10"
},
"devDependencies": {
"@types/jest": "~29.5.12",
"jest": "~29.7.0",
"ts-jest": "~29.1.5",
"ts-loader": "^9.5.1",
"ts-node": "^10.9.2",
"typescript": "4.9.5"
}
}