-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
92 lines (92 loc) · 2.07 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
{
"name": "kesen",
"version": "0.2.0",
"description": "Kesen is an isomorphic Javascript DDP Client",
"author": "Miguel A. Mejias <[email protected]>",
"keywords": [
"Meteor",
"DDP",
"Client",
"MobX"
],
"homepage": "https://github.com/plitex/kesen",
"repository": {
"type": "git",
"url": "https://github.com/plitex/kesen.git"
},
"license": "MIT",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"lint": "tslint --project tsconfig.json --config tslint.json",
"pretest": "yarn lint",
"test": "jest --coverage --passWithNoTests",
"test:watch": "jest --watch --notify",
"build": "gulp build",
"dist": "gulp dist",
"precommit": "lint-staged",
"prepublishOnly": "yarn dist"
},
"lint-staged": {
"src/**/*.{ts,tsx}": [
"npm run lint",
"prettier --parser typescript --write",
"git add"
]
},
"jest": {
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
"testPathIgnorePatterns": [
"/node_modules/",
"/build/",
"/lib/",
"/examples/"
],
"modulePathIgnorePatterns": [
"/build/",
"/lib/"
],
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
],
"collectCoverageFrom": [
"src/**/*.{ts, tsx}"
]
},
"devDependencies": {
"@types/jest": "^23.3.2",
"babel-core": "^6.26.3",
"babel-jest": "^23.6.0",
"del": "^3.0.0",
"gulp": "^3.9.1",
"gulp-typescript": "^4.0.2",
"husky": "^1.1.4",
"jest": "^23.6.0",
"lint-staged": "^8.0.5",
"merge2": "^1.2.0",
"mock-socket": "^8.0.2",
"prettier": "^1.7.3",
"ts-jest": "^23.1.4",
"tslint": "^5.7.0",
"tslint-config-prettier": "^1.5.0",
"tslint-eslint-rules": "^5.4.0",
"typescript": "~3.3.3"
},
"dependencies": {
"@types/debug": "^4.1.0",
"@types/uuid": "^3.4.4",
"debug": "^4.1.0",
"eventemitter3": "^3.1.0",
"mingo": "^2.2.10",
"mobx": "^5.1.2",
"uuid": "^3.3.2"
}
}