-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.12 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.12 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
{
"name": "@entipic/data",
"version": "1.2.7",
"description": "Entipic data module",
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"scripts": {
"pretest": "npm run clean && npm run tsc",
"test": "ava --no-cache --verbose lib/**/*.test.js",
"posttest": "npm run clean-test-code",
"tsc": "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"
},
"engines": {
"node": ">=14"
},
"repository": {
"type": "git",
"url": "git+https://github.com/entipic/data.git"
},
"keywords": [
"entipic",
"data"
],
"author": "Dumitru Cantea",
"license": "ISC",
"bugs": {
"url": "https://github.com/entipic/data/issues"
},
"homepage": "https://github.com/entipic/data#readme",
"devDependencies": {
"ava": "~0.25.x",
"rimraf": "^2.6.3",
"typescript": "^4.6.3"
},
"dependencies": {
"@entipic/domain": "^1.2.9",
"mongo-item": "^0.2.2",
"mongodb": "^4.16.0"
}
}