-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 loc) · 2.26 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
{
"name": "indexedbdeitor",
"version": "1.0.0",
"description": "A little experiment to make a library that allow you to use indexedDB as storage source for your front-end app",
"main": "index.js",
"scripts": {
"build": "webpack",
"test": "jest --watchAll",
"coverage": "jest --coverage --coverageReporters=lcov",
"test-with-coverage": "yarn coverage && cat ./coverage/lcov.info | codacy-coverage --language typescript --accountToken 7Fe1Hm9mMSJeuaS3V1NZ --username sagrath23 --projectName indexedDB",
"watch": "jest --watchAll --no-watchman"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sagrath23/indexedDB.git"
},
"keywords": [
"indexedDB",
"Typescript"
],
"author": "Steven Augusto Villegas Castellanos",
"license": "MIT",
"bugs": {
"url": "https://github.com/sagrath23/indexedDB/issues"
},
"dependencies": {
"realistic-structured-clone": "^1.0.1",
"rx": "^4.1.0",
"rxjs": "^5.5.2"
},
"devDependencies": {
"@types/jest": "^21.1.5",
"@types/node": "~6.0.60",
"awesome-typescript-loader": "^3.1.3",
"babel-core": "^6.26.0",
"babel-jest": "^21.2.0",
"babel-preset-env": "^1.6.1",
"codacy-coverage": "^2.1.0",
"jest": "^21.2.1",
"shelving-mock-indexeddb": "^1.0.7",
"source-map-loader": "^0.2.1",
"ts-jest": "^21.1.4",
"ts-node": "~3.2.0",
"tslint": "~5.3.2",
"typescript": "~2.3.3",
"webpack": "^2.6.1",
"webpack-dev-server": "^2.4.5"
},
"jest": {
"transform": {
"^.+\\.tsx?$": "<rootDir>/node_modules/ts-jest/preprocessor.js"
},
"testRegex": "spec/.*\\.(test|spec)\\.(ts|tsx)$",
"testEnvironment": "node",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"json"
],
"mapCoverage": true,
"coverageReporters": [
"html"
],
"collectCoverageFrom": [
"src/**.{ts,tsx}"
],
"transformIgnorePatterns": [
"node_modules/(?!@open)"
]
},
"homepage": "https://github.com/sagrath23/indexedDB#readme"
}