-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
101 lines (101 loc) · 2.73 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"name": "@youngapp/yap",
"version": "1.24.0",
"description": "Yap Core",
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"directories": {
"doc": "docs"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"files": [
"dist",
"docs",
"LICENSE",
"README.md",
"package.json"
],
"scripts": {
"test": "ENV=local mocha -r ts-node/register test/**/*.test.ts --timeout 30000 --watch-extensions ts --watch",
"test:integration": "nyc mocha -r ts-node/register test/**/*.ts",
"lint": "tslint -c tslint.json -p tsconfig.json --fix",
"build": "rm -rf dist && ./node_modules/.bin/tsc",
"coverage": "nyc report --reporter=text-lcov | codacy-coverage --token e3497699cef94781936c5103f84e46ab",
"release": "standard-version --no-verify --commit-all --release-as minor --git-tag-fallback false"
},
"repository": {
"type": "git",
"url": "git+https://github.com/youngapp/yap.git"
},
"keywords": [
"youngapp",
"core"
],
"author": "Oleksandr Koreniuk",
"bugs": {
"url": "https://github.com/youngapp/yap/issues"
},
"homepage": "https://github.com/youngapp/yap#readme",
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"standard-version": {
"scripts": {
"postbump": "git add package.json",
"precommit": "echo \"chore(release): [skip ci]\""
}
},
"devDependencies": {
"@commitlint/cli": "^8.1.0",
"@commitlint/config-conventional": "^8.1.0",
"@types/mocha": "^5.2.7",
"assert-throws-async": "^3.0.0",
"husky": "^3.0.0",
"mocha": "^6.2.2",
"nyc": "^15.0.0",
"sinon": "^7.5.0",
"supertest": "^4.0.2",
"ts-node": "^8.5.4",
"tslint": "^5.12.0",
"typescript": "^3.7.3",
"supertest": "^4.0.2"
},
"dependencies": {
"@sentry/node": "5.10.2",
"@types/assert": "^1.4.3",
"@types/aws-lambda": "^8.10.39",
"@types/colors": "^1.2.1",
"@types/debug": "^4.1.5",
"@types/graphql": "^14.5.0",
"@types/ip": "^1.1.0",
"@types/lodash": "^4.14.149",
"@types/node": "^12.12.17",
"@types/node-fetch": "^2.5.4",
"@types/path-to-regexp": "^1.7.0",
"@types/sinon": "^7.5.1",
"@types/supertest": "^2.0.8",
"@types/xml-js": "^1.0.0",
"apollo-server-lambda": "^2.9.15",
"aws-lambda": "^1.0.5",
"aws-sdk": "^2.590.0",
"axios": "^0.19.0",
"codacy-coverage": "^3.4.0",
"colors": "^1.4.0",
"graphql": "^14.6.0",
"graphql-constraint-directive": "^1.4.1",
"graphql-scalars": "^1.0.7",
"ip": "^1.1.5",
"lodash": "^4.17.15",
"path-to-regexp": "^6.1.0",
"xml-js": "^1.6.11"
}
}