-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
63 lines (63 loc) · 1.31 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
{
"name": "rx-sql",
"version": "0.0.0-development",
"description": "RxJS Implementation of MySQL",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"keywords": [
"mysql",
"rxjs",
"database",
"rx-sql",
"reactive"
],
"directories": {
"lib": "lib"
},
"repository": {
"type": "git",
"url": "https://github.com/inf3cti0n95/rx-sql.git"
},
"author": "Viraj Trivedi <[email protected]>",
"license": "MIT",
"dependencies": {
"rxjs": "^6.2.1"
},
"bugs": {
"url": "https://github.com/inf3cti0n95/rx-sql/issues"
},
"homepage": "https://github.com/inf3cti0n95/rx-sql#readme",
"scripts": {
"test": "jest",
"travis-deploy-once": "travis-deploy-once",
"semantic-release": "semantic-release"
},
"devDependencies": {
"@types/jest": "^23.1.0",
"@types/mysql": "^2.15.5",
"@types/node": "^10.3.3",
"jest": "^23.1.0",
"semantic-release": "^15.5.5",
"travis-deploy-once": "^5.0.0",
"ts-jest": "^22.4.6",
"typescript": "^2.9.2"
},
"jest": {
"moduleFileExtensions": [
"ts",
"tsx",
"js"
],
"transform": {
"^.+\\.(ts|tsx)$": "ts-jest"
},
"globals": {
"ts-jest": {
"tsConfigFile": "tsconfig.json"
}
},
"testMatch": [
"**/__tests__/*.+(ts|tsx|js)"
]
}
}