forked from parse-community/Parse-SDK-JS
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
120 lines (120 loc) · 3.31 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
{
"name": "parse",
"version": "2.13.0",
"description": "The Parse JavaScript SDK",
"homepage": "https://parseplatform.org/",
"keywords": [
"cloud",
"mobile",
"api"
],
"license": "BSD-3-Clause",
"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",
"PATENTS",
"README.md"
],
"browser": {
"react-native": false
},
"dependencies": {
"@babel/runtime": "7.9.6",
"@babel/runtime-corejs3": "7.9.6",
"crypto-js": "4.0.0",
"react-native-crypto-js": "1.0.0",
"uuid": "3.3.3",
"ws": "7.2.5",
"xmlhttprequest": "1.8.0"
},
"devDependencies": {
"@babel/core": "7.9.6",
"@babel/plugin-proposal-class-properties": "7.8.3",
"@babel/plugin-transform-flow-comments": "7.8.3",
"@babel/plugin-transform-flow-strip-types": "7.9.0",
"@babel/plugin-transform-runtime": "7.9.6",
"@babel/preset-env": "7.9.6",
"@babel/preset-react": "7.9.4",
"@parse/minami": "1.0.0",
"babel-eslint": "10.1.0",
"babel-jest": "24.9.0",
"babel-plugin-inline-package-json": "2.0.0",
"babel-plugin-minify-dead-code-elimination": "0.5.1",
"babel-plugin-transform-inline-environment-variables": "0.4.3",
"browserify": "16.5.1",
"codecov": "3.6.5",
"core-js": "3.6.5",
"cross-env": "7.0.2",
"eslint": "6.8.0",
"eslint-plugin-flowtype": "4.7.0",
"express": "4.17.1",
"gulp": "4.0.2",
"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",
"jasmine": "3.5.0",
"jasmine-reporters": "2.3.2",
"jest": "24.9.0",
"jsdoc": "3.6.3",
"jsdoc-babel": "0.5.0",
"metro-react-native-babel-preset": "0.59.0",
"parse-server": "github:parse-community/parse-server#master",
"regenerator-runtime": "0.13.5",
"vinyl-source-stream": "2.0.0"
},
"scripts": {
"build": "node build_releases.js",
"release": "node build_releases.js && npm publish",
"test": "cross-env PARSE_BUILD=node jest",
"lint": "eslint --cache src/ integration/",
"lint:fix": "eslint --fix --cache src/ integration/",
"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",
"prepare": "npm run build",
"release_docs": "./release_docs.sh",
"gulp": "gulp",
"cross-env": "cross-env"
},
"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"
],
"setupFilesAfterEnv": [
"./setup-jest.js"
]
}
}