-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.52 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.52 KB
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
{
"name": "parse-server-addon-cloud-class",
"version": "1.1.1",
"description": "A new way to define Parse.Cloud events for your classes",
"main": "out/index.js",
"types": "out/index.d.ts",
"scripts": {
"test": "jest --ci --maxWorkers=2",
"build": "tsc",
"watch": "tsc -w",
"prepublishOnly": "tsc"
},
"keywords": [],
"author": "Juan Camilo Guarín P",
"license": "MIT",
"devDependencies": {
"@types/express": "^4.16.1",
"@types/jest": "^24.0.16",
"@types/jquery": "^3.3.30",
"@types/parse": "^2.2.7",
"delay": "^4.0.1",
"express": "^4.16.4",
"jest": "^24.7.1",
"node-fetch": "^2.2.0",
"parse": "^2.6.0",
"parse-server": "^4.5.0",
"ts-jest": "^24.0.2",
"tslint": "^5.16.0",
"tslint-config-airbnb": "^5.11.1",
"typescript": "^3.5.3"
},
"peerDependencies": {
"parse": ">=1.11.0"
},
"dependencies": {
"is": "^3.2.1"
},
"jest": {
"roots": [
"<rootDir>/src",
"<rootDir>/test"
],
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"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-cloud-class.git"
},
"bugs": {
"url": "https://github.com/owsas/parse-cloud-class/issues"
},
"homepage": "https://github.com/owsas/parse-cloud-class#readme"
}