-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
35 lines (35 loc) · 957 Bytes
/
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
{
"name": "parse-server-mysql-adapter",
"version": "1.0.1",
"description": "MySQL Adapter for Parse Server",
"author": "Diamond Lewis",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/dplewis/parse-server-mysql-adapter.git"
},
"main": "lib/index.js",
"files": ["lib/"],
"scripts": {
"build": "babel src/ -d lib/ --copy-files",
"watch": "babel --watch src/ -d lib/ --copy-files",
"lint": "eslint --cache ./src",
"lint:fix": "eslint --fix ./src",
"coverage": "./scripts/coverage.sh",
"testonly": "./scripts/testonly.sh",
"test:init": "./scripts/init-test.sh"
},
"dependencies": {
"lodash": "4.17.21",
"mysql2": "3.6.2",
"npmlog": "7.0.1",
"parse": "4.2.0"
},
"devDependencies": {
"@babel/cli": "7.23.0",
"@babel/core": "7.23.2",
"@babel/eslint-parser": "7.22.15",
"@babel/preset-env": "7.23.2",
"eslint": "8.51.0"
}
}