forked from parse-community/Parse-SDK-JS
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
157 lines (157 loc) · 4.74 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
{
"name": "parse",
"version": "5.3.0-alpha.3",
"description": "Parse JavaScript SDK",
"homepage": "https://parseplatform.org",
"keywords": [
"cloud",
"mobile",
"api"
],
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/parse-community/Parse-SDK-JS"
},
"bugs": "https://github.com/parse-community/Parse-SDK-JS/issues",
"files": [
"index.js",
"node.js",
"react-native.js",
"weapp.js",
"dist/",
"lib/",
"LICENSE",
"NOTICE",
"README.md"
],
"browser": {
"react-native": false
},
"dependencies": {
"@babel/runtime-corejs3": "7.24.8",
"idb-keyval": "6.2.1",
"react-native-crypto-js": "1.0.0",
"uuid": "10.0.0",
"ws": "8.18.0",
"xmlhttprequest": "1.8.0"
},
"devDependencies": {
"@babel/core": "7.25.7",
"@babel/plugin-proposal-class-properties": "7.18.6",
"@babel/plugin-transform-runtime": "7.24.7",
"@babel/preset-env": "7.25.7",
"@babel/preset-react": "7.24.7",
"@babel/preset-typescript": "7.24.7",
"@definitelytyped/dtslint": "0.0.163",
"@eslint/js": "9.12.0",
"@parse/minami": "git+https://github.com/parse-community/minami#main",
"@saithodev/semantic-release-backmerge": "4.0.1",
"@semantic-release/changelog": "6.0.3",
"@semantic-release/commit-analyzer": "13.0.0",
"@semantic-release/git": "10.0.1",
"@semantic-release/github": "10.1.3",
"@semantic-release/npm": "12.0.1",
"@semantic-release/release-notes-generator": "14.0.1",
"@types/facebook-js-sdk": "3.3.11",
"babel-jest": "29.5.0",
"babel-plugin-inline-package-json": "2.0.0",
"babel-plugin-minify-dead-code-elimination": "0.5.2",
"babel-plugin-transform-inline-environment-variables": "0.4.4",
"browserify": "17.0.0",
"codecov": "3.8.3",
"core-js": "3.38.1",
"cross-env": "7.0.2",
"eslint": "9.11.1",
"eslint-plugin-jsdoc": "50.0.0",
"express": "4.21.0",
"gulp": "5.0.0",
"gulp-babel": "8.0.0",
"gulp-derequire": "3.0.0",
"gulp-insert": "0.5.0",
"gulp-rename": "2.0.0",
"gulp-uglify": "3.0.2",
"gulp-watch": "5.0.1",
"husky": "9.1.6",
"jasmine": "5.3.0",
"jasmine-reporters": "2.5.2",
"jasmine-spec-reporter": "7.0.0",
"jest": "29.7.0",
"jest-environment-jsdom": "29.7.0",
"jsdoc": "4.0.3",
"jsdoc-babel": "0.5.0",
"lint-staged": "15.2.7",
"madge": "8.0.0",
"metro-react-native-babel-preset": "0.77.0",
"mongodb-runner": "5.7.0",
"parse-server": "7.3.0",
"prettier": "3.3.3",
"puppeteer": "20.4.0",
"regenerator-runtime": "0.14.1",
"semantic-release": "24.1.1",
"typescript-eslint": "8.0.0-alpha.10",
"vinyl-source-stream": "2.0.0"
},
"optionalDependencies": {
"crypto-js": "4.2.0"
},
"scripts": {
"build": "node build_releases.js",
"build:types": "tsc && prettier --write 'types/{**/*,*}.ts' && npm run lint:fix",
"release": "node build_releases.js && npm publish",
"test": "cross-env PARSE_BUILD=node jest",
"test:mongodb": "npm run test:mongodb:runnerstart && npm run integration",
"test:mongodb:runnerstart": "mongodb-runner start -- --port 27017",
"test:types": "dtslint --expectOnly types",
"posttest:mongodb": "mongodb-runner stop --all",
"lint": "eslint --cache src/ integration/",
"lint:fix": "eslint --fix --cache src/ integration/",
"lint:types": "eslint --cache types/",
"watch": "cross-env PARSE_BUILD=${PARSE_BUILD} gulp watch",
"watch:browser": "cross-env PARSE_BUILD=browser npm run watch",
"watch:node": "cross-env PARSE_BUILD=node npm run watch",
"watch:react-native": "cross-env PARSE_BUILD=react-native npm run watch",
"integration": "cross-env TESTING=1 jasmine --config=jasmine.json",
"docs": "jsdoc -c ./jsdoc-conf.json ./src",
"madge:circular": "madge ./src --extensions js,ts --circular",
"prepare": "husky && npm run build",
"pre-commit": "lint-staged",
"release_docs": "./release_docs.sh",
"gulp": "gulp",
"prettier": "prettier --write '{src,integration,types}/{**/*,*}.{js,ts}' && npm run lint:fix",
"cross-env": "cross-env"
},
"lint-staged": {
"{src,integration}/{**/*,*}.{js,ts}": [
"prettier --write",
"eslint --fix --cache",
"git add"
]
},
"engines": {
"node": "18 || 19 || 20 || 22"
},
"jest": {
"automock": true,
"collectCoverage": true,
"coveragePathIgnorePatterns": [
"/node_modules/",
"test_helpers/(.*).js"
],
"roots": [
"src/"
],
"testPathIgnorePatterns": [
"/node_modules/",
"/test_helpers/"
],
"transform": {
".*": "./babel-jest.js"
},
"transformIgnorePatterns": [
"/node_modules/",
"package.json"
],
"testEnvironment": "jsdom"
}
}