-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.45 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
{
"name": "@entipic/name-explorer",
"version": "1.0.0",
"description": "Entipic name explorer",
"scripts": {
"start": "node ./lib/app.js",
"pretest": "npm run clean && npm run tsc",
"test": "ava --no-cache --verbose lib/**/*.test.js",
"posttest": "npm run clean-test-code",
"tsc": "./node_modules/.bin/tsc",
"tscw": "tsc -w",
"preversion": "npm run tsc",
"postversion": "git push --follow-tags",
"prepublishOnly": "npm run tsc && npm run clean-test-code",
"clean": "rimraf ./lib",
"clean-test-code": "rimraf ./lib/**/*.test.js && rimraf ./lib/**/*.test.d.ts"
},
"engines": {
"node": ">=16"
},
"repository": {
"type": "git",
"url": "git+https://github.com/entipic/name-explorer.git"
},
"keywords": [
"entipic",
"new-name"
],
"author": "Dumitru Cantea",
"license": "ISC",
"bugs": {
"url": "https://github.com/entipic/name-explorer/issues"
},
"homepage": "https://github.com/entipic/name-explorer#readme",
"dependencies": {
"@entipic/data": "^1.2.7",
"@entipic/domain": "^1.2.9",
"atonic": "^1.0.4",
"aws-sdk": "^2.683.0",
"debug": "^4.1.1",
"dhash-image": "^1.2.1",
"entity-finder": "^0.5.2",
"got": "^9.6.0",
"mongodb": "^4.16.0",
"wiki-entity": "^0.4.3"
},
"devDependencies": {
"@types/got": "^9.4.0",
"@types/sharp": "^0.25.0",
"ava": "~0.25.x",
"dotenv": "^6.2.0",
"rimraf": "^2.6.2",
"typescript": "^4.6.3"
}
}