forked from parse-community/Parse-SDK-JS
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
76 lines (76 loc) · 1.86 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
{
"name": "parse",
"version": "1.10.0",
"description": "The Parse JavaScript SDK",
"homepage": "https://www.parse.com",
"keywords": [
"cloud",
"mobile",
"api"
],
"license": "BSD-3-Clause",
"repository": {
"type": "git",
"url": "https://github.com/ParsePlatform/Parse-SDK-JS"
},
"bugs": "https://github.com/ParsePlatform/Parse-SDK-JS/issues",
"files": [
"index.js",
"node.js",
"react-native.js",
"dist/",
"lib/",
"LICENSE",
"PATENTS",
"README.md"
],
"browser": {
"react-native": false
},
"dependencies": {
"babel-runtime": "^6.11.6",
"ws": "^2.2.3",
"xmlhttprequest": "^1.7.0"
},
"devDependencies": {
"babel-jest": "^19.0.0",
"babel-plugin-flow-comments": "^6.3.19",
"babel-plugin-inline-package-json": "~2.0.0",
"babel-plugin-minify-dead-code-elimination": "0.1.4",
"babel-plugin-transform-inline-environment-variables": "^6.8.0",
"babel-plugin-transform-runtime": "^6.15.0",
"babel-preset-es2015": "^6.14.0",
"babel-preset-react": "^6.11.1",
"babel-preset-stage-2": "^6.13.0",
"browserify": "^14.3.0",
"codecov.io": "^0.1.6",
"gulp": "^3.9.0",
"gulp-babel": "^6.1.2",
"gulp-derequire": "^2.1.0",
"gulp-insert": "^0.5.0",
"gulp-rename": "^1.2.2",
"gulp-replace": "^0.5.4",
"gulp-uglify": "^2.1.2",
"jasmine-reporters": "~2.2.1",
"jest-cli": "^19.0.2",
"vinyl-source-stream": "^1.1.0"
},
"scripts": {
"build": "./build_releases.sh",
"release": "./build_releases.sh && npm publish",
"test": "PARSE_BUILD=node jest"
},
"jest": {
"automock": true,
"collectCoverage": true,
"roots": [
"src/"
],
"testPathIgnorePatterns": [
"/node_modules/",
"/test_helpers/"
],
"transform": {".*": "./babel-jest.js"},
"setupTestFrameworkScriptFile": "./setup-jest.js"
}
}