-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
103 lines (103 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
102
103
{
"name": "@djaty/djaty-nodejs",
"version": "1.1.3",
"description": "Official Djaty SDK for NodeJS",
"repository": {
"type": "git",
"url": "https://github.com/Djaty/djaty-nodejs.git"
},
"homepage": "https://djaty.com/docs/SDKs/nodeJs/index.html",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"clean": "rm -rf dist",
"build": "npm run clean && tsc",
"test": "npm run build && mocha --reporter spec 'dist/**/*.spec.js'",
"commit": "git-cz",
"semantic-release": "dotenv -e .tokens -- semantic-release --no-ci",
"semantic-release:preview-only": "dotenv -e .tokens -- semantic-release --dry-run"
},
"engines": {
"node": ">=6"
},
"module": "dist/index.esm.js",
"author": "Djaty",
"license": "BSD-3-Clause",
"keywords": [
"Express",
"TypeScript",
"Djaty",
"bug",
"reporting",
"tracking",
"SDK",
"middleware",
"ES2015",
"ES6"
],
"dependencies": {
"@types/ajv-errors": "^1.0.2",
"@types/express": "4.0.39",
"@types/koa": "2.0.40",
"@types/koa-compose": "3.2.2",
"ajv": "6.5.0",
"ajv-errors": "^1.0.1",
"ajv-keywords": "3.2.0",
"bluebird": "3.5.1",
"computer-name": "0.1.0",
"cookie": "0.3.1",
"debug": "3.1.0",
"express": "4.16.2",
"ip": "1.1.5",
"json-stringify-safe": "5.0.1",
"koa": "2.4.1",
"lodash": "4.17.10",
"sha256": "0.2.0",
"try-json-parse": "1.0.0",
"winston": "3.0.0",
"winston-transport": "4.2.0"
},
"devDependencies": {
"@commitlint/cli": "^8.2.0",
"@commitlint/config-conventional": "^8.2.0",
"@semantic-release/changelog": "^3.0.6",
"@semantic-release/commit-analyzer": "^6.3.3",
"@semantic-release/git": "^7.0.18",
"@semantic-release/npm": "^5.3.4",
"@semantic-release/release-notes-generator": "^7.3.5",
"@types/ajv": "1.0.0",
"@types/bluebird": "3.5.18",
"@types/chai": "^3.4.34",
"@types/chai-http": "0.0.29",
"@types/cookie": "0.3.1",
"@types/debug": "0.0.30",
"@types/lodash": "4.14.85",
"@types/mocha": "^2.2.32",
"@types/nock": "^9.3.0",
"@types/node": "^6.0.46",
"@types/winston": "2.3.9",
"chai": "^3.5.0",
"chai-http": "^3.0.0",
"commitizen": "^4.0.3",
"cz-conventional-changelog": "^3.0.2",
"dotenv-cli": "^3.1.0",
"husky": "^3.1.0",
"lint-staged": "^9.5.0",
"mocha": "^3.1.2",
"nock": "^10.0.2",
"semantic-release": "^15.13.31",
"sinon": "^7.1.1",
"ts-node": "^1.6.1",
"tslint": "^5.16.0",
"tslint-eslint-rules": "^3.4.0",
"typescript": "^2.8.4"
},
"bugs": {
"url": "https://github.com/Djaty/djaty-nodejs/issues"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}