-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.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-query-gen",
"version": "1.1.6",
"description": "Helps you generate queries for your Parse Backend, structuring them with objects",
"main": "out/index.js",
"scripts": {
"test": "jest --ci --silent",
"build": "tsc",
"watch": "tsc -w",
"prepublishOnly": "npm run build"
},
"keywords": [
"parse",
"parse.com",
"query",
"parse-query",
"parse-server"
],
"author": "Juan Camilo Guarín P",
"license": "MIT",
"devDependencies": {
"@types/jest": "^21.1.4",
"@types/parse": "^1.11.0",
"jest": "^21.2.1",
"parse": "^2.0.1",
"ts-jest": "^21.1.3",
"tslint": "^5.8.0",
"tslint-config-airbnb": "^5.3.0",
"typescript": "^2.5.3"
},
"peerDependencies": {
"parse": "^1.10.1"
},
"dependencies": {
"assert": "^1.4.1",
"is": "^3.2.1"
},
"jest": {
"mapCoverage": true,
"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-query-gen.git"
},
"bugs": {
"url": "https://github.com/owsas/parse-query-gen/issues"
},
"homepage": "https://github.com/owsas/parse-query-gen#readme"
}