-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
64 lines (64 loc) · 1.46 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
{
"name": "parse-offline",
"version": "1.0.6",
"description": "Parse JS SDK Addons for handling offline for PWAs",
"main": "out/index.js",
"types": "out/index.d.ts",
"scripts": {
"test": "jest --ci --silent --maxWorkers=2",
"build": "tsc",
"watch": "tsc -w",
"prepublishOnly": "tsc"
},
"keywords": [],
"author": "Juan Camilo Guarín P",
"license": "MIT",
"devDependencies": {
"@types/jest": "22.2.2",
"@types/parse": "2.4.7",
"jest": "23.6.0",
"moment": "2.22.0",
"parse": "1.11.0",
"ts-jest": "21.2.4",
"tslint": "5.11.0",
"tslint-config-airbnb": "5.3.0",
"typescript": "2.8.1"
},
"dependencies": {},
"jest": {
"roots": [
"<rootDir>/src",
"<rootDir>/test"
],
"collectCoverage": true,
"transform": {
"^.+\\.tsx?$": "<rootDir>/node_modules/ts-jest/preprocessor.js"
},
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json"
],
"modulePathIgnorePatterns": [
"<rootDir>/out"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/owsas/parse-offline.git"
},
"bugs": {
"url": "https://github.com/owsas/parse-offline.git/issues"
},
"homepage": "https://github.com/owsas/parse-offline.git#readme",
"peerDependencies": {
"@types/parse": "^2.4.4",
"parse": "^1.11.0"
},
"directories": {
"test": "test"
}
}