-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
74 lines (74 loc) · 1.7 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "hipool",
"version": "0.1.0",
"description": "A generic resource pooling manager",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"clean": "rm -rf dist docs && mkdir docs",
"test": "NODE_ENV=test nyc mocha",
"itest": "NODE_ENV=test nyc --reporter=lcov --report-dir=icoverage mocha itest",
"coverage": "NODE_ENV=test nyc --reporter=lcov mocha && codecov -f coverage/lcov.info",
"lint": "tslint -p .",
"prepublishOnly": "yarn run clean && yarn run build && yarn test && yarn lint",
"precommit": "npm run lint",
"prepush": "node .checkpush.js"
},
"repository": {
"type": "git",
"url": "YOURGITREPO"
},
"engine": {
"node": ">8.0.0"
},
"files": [
"dist"
],
"author": "Hipages",
"license": "Apache-2.0",
"directories": {
"lib": "dist",
"test": "test"
},
"dependencies": {},
"devDependencies": {
"@types/node": "^8.4.0",
"@types/generic-pool": "^3.1.2",
"@types/source-map-support": "^0.4.0",
"co-mocha": "^1.2.2",
"codecov": "^3.0.0",
"doubleagent": "^1.1.1",
"generic-pool": "^3.4.2",
"husky": "^0.14.3",
"mocha": "^5.0.5",
"mocha-lcov-reporter": "^1.3.0",
"mocha-typescript": "^1.1.12",
"must": "^0.13.4",
"nyc": "^11.6.0",
"ts-node": "^5.0.1",
"tslint": "^5.9.1",
"tslint-config-shopify": "^3.0.1",
"typescript": "^2.7.2"
},
"nyc": {
"include": [
"src/**/*.ts",
"src/**/*.tsx"
],
"extension": [
".ts",
".tsx"
],
"require": [
"ts-node/register"
],
"reporter": [
"text",
"text-summary",
"html"
],
"sourceMap": true,
"instrument": true
}
}