-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
129 lines (129 loc) · 3.58 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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
{
"name": "express-session-etcd3",
"version": "0.0.0-development",
"description": "An ETCD v3 store adapter for express-session using etcd3 client.",
"keywords": [
"etcd",
"etcd3",
"express",
"session",
"adapter"
],
"main": "dist/express-session-etcd3.js",
"module": "dist/express-session-etcd3.es5.js",
"typings": "dist/types/express-session-etcd3.d.ts",
"files": [
"dist"
],
"author": "Jexia <community@jexia.com>",
"contributors": [
{
"name": "William Grasel",
"email": "d.ru.fo.s+github@gmail.com",
"url": "https://twitter.com/willgmbr"
}
],
"repository": {
"type": "git",
"url": "https://github.com/jexia/express-session-etcd3.git"
},
"license": "MIT",
"engines": {
"node": ">=6.0.0"
},
"scripts": {
"lint": "tslint -t codeFrame -p .",
"prebuild": "rimraf dist",
"build": "tsc --module commonjs && rollup -c rollup.config.ts && typedoc --out docs --target es6 --theme minimal --mode file src",
"start": "rollup -c rollup.config.ts -w",
"test": "jest",
"test:watch": "jest --watch",
"test:ci": "npm run test -- --coverage --no-cache --ci --forceExit --testResultsProcessor=\"jest-junit\"",
"deploy-docs": "ts-node tools/gh-pages-publish",
"commit": "git-cz",
"semantic-release": "semantic-release",
"precommit": "lint-staged",
"docker": "docker build -t etcd . && docker run -d -p 2379:2379 -p 2380:2380 etcd",
"prepush": "npm run test:ci && npm run build",
"commitmsg": "validate-commit-msg"
},
"lint-staged": {
"{src,test}/**/*.ts": [
"prettier --write --no-semi --single-quote",
"git add"
]
},
"config": {
"commitizen": {
"path": "node_modules/cz-conventional-changelog"
},
"validate-commit-msg": {
"types": "conventional-commit-types",
"helpMessage": "Use \"npm run commit\" instead, we use conventional-changelog format :) (https://github.com/commitizen/cz-cli)"
}
},
"jest": {
"transform": {
".(ts)": "<rootDir>/node_modules/ts-jest/preprocessor.js"
},
"testRegex": "(/__tests__/.*|\\.(test|spec))\\.(ts|tsx|js)$",
"moduleFileExtensions": [
"ts",
"js"
],
"collectCoverageFrom": [
"src/**/*.ts"
],
"coverageThreshold": {
"global": {
"branches": 90,
"functions": 95,
"lines": 95,
"statements": 95
}
},
"collectCoverage": true
},
"peerDependencies": {
"express-session": "^1.15.6",
"etcd3": "^0.2.10"
},
"devDependencies": {
"@types/debug": "0.0.30",
"@types/express-session": "^1.15.8",
"@types/jest": "^22.2.3",
"@types/node": "^10.0.1",
"colors": "^1.2.1",
"commitizen": "^2.9.6",
"cross-env": "^5.1.4",
"cz-conventional-changelog": "^2.1.0",
"etcd3": "^0.2.10",
"express-session": "^1.15.6",
"husky": "^0.14.3",
"jest": "^22.4.3",
"jest-junit": "^3.7.0",
"lint-staged": "^7.0.5",
"lodash.camelcase": "^4.3.0",
"prettier": "^1.12.1",
"prompt": "^1.0.0",
"replace-in-file": "^3.4.0",
"rimraf": "^2.6.2",
"rollup": "^0.58.2",
"rollup-plugin-commonjs": "^9.1.2",
"rollup-plugin-node-resolve": "^3.3.0",
"rollup-plugin-sourcemaps": "^0.4.2",
"rollup-plugin-typescript2": "^0.13.0",
"semantic-release": "^15.1.8",
"ts-jest": "^22.4.4",
"ts-node": "^6.0.2",
"tslint": "^5.9.1",
"tslint-config-prettier": "^1.12.0",
"tslint-config-standard": "^7.0.0",
"typedoc": "^0.11.1",
"typescript": "^2.8.3",
"validate-commit-msg": "^2.14.0"
},
"dependencies": {
"debug": "^3.1.0"
}
}