-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
80 lines (80 loc) · 1.85 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
75
76
77
78
79
80
{
"name": "inceptum-cqrs",
"version": "0.20.3",
"description": "Extension to Inceptum to build apps based on CQRS",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"clean": "rm -rf dist",
"coverage": "NODE_ENV=test nyc --reporter=lcov --reporter=text mocha",
"test": "NODE_ENV=test nyc mocha --require ts-node/register 'test/**/*.ts'",
"lint": "tslint -p . --type-check",
"prepublishOnly": "npm run clean && tsc && npm test && npm run lint",
"precommit": "npm run lint",
"prepush": "node .checkpush.js",
"build": "tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hipages/inceptum-cqrs.git"
},
"engine": {
"node": ">7.0.0"
},
"files": [
"dist"
],
"author": "Hipages",
"license": "Apache-2.0",
"directories": {
"lib": "dist",
"test": "test"
},
"dependencies": {
"@types/uuid": "^3.4.2",
"inceptum": "^0.9.2",
"json-stringify-safe": "^5.0.1",
"jsonwebtoken": "7.3.0",
"prom-client": "^10.2.2",
"uuid": "3.0.1"
},
"devDependencies": {
"@types/jsonwebtoken": "7.2.0",
"@types/node": "7.0.23",
"@types/source-map-support": "^0.2.28",
"co-mocha": "^1.1.2",
"codecov": "^2.3.0",
"doubleagent": "^1.1.0",
"husky": "^0.14.3",
"mocha": "^4.0.1",
"mocha-lcov-reporter": "^1.3.0",
"mocha-typescript": "^1.1.12",
"must": "^0.13.4",
"nyc": "^11.7.1",
"sinon": "^7.2.3",
"ts-node": "^6.0.0",
"tslint": "^5.7.0",
"tslint-config-shopify": "^3.0.1",
"typescript": "^2.8.3"
},
"nyc": {
"include": [
"src/**/*.ts",
"src/**/*.tsx"
],
"extension": [
".ts",
".tsx"
],
"require": [
"ts-node/register"
],
"reporter": [
"text",
"text-summary",
"lcov"
],
"sourceMap": true,
"instrument": true
}
}