-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.35 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
{
"name": "@ournet/topics-data",
"version": "0.1.0",
"description": "Ournet topics data module",
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"scripts": {
"pretest": "npm run clean && npm run tsc",
"test": "ava --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 && rimraf ./lib/**/*.test.d.ts"
},
"engines": {
"node": ">=8.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ournet/topics-data.git"
},
"keywords": [
"topics",
"topics-data",
"data",
"ournet"
],
"author": "Dumitru Cantea",
"license": "ISC",
"bugs": {
"url": "https://github.com/ournet/topics-data/issues"
},
"homepage": "https://github.com/ournet/topics-data#readme",
"devDependencies": {
"@types/mongodb": "^3.1.14",
"@types/nanoid": "^1.2.0",
"@types/node": "10.12.7",
"ava": "^0.25.0",
"debug": "^4.1.0",
"rimraf": "^2.6.2",
"typescript": "3.1.6"
},
"dependencies": {
"@ournet/domain": "^0.3.3",
"@ournet/topics-domain": "^0.1.0",
"mongodb": "^3.1.9",
"nanoid": "^2.0.0"
}
}