-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.6 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
{
"name": "parse-server-carekit",
"version": "1.0.0",
"description": "CareKit for Parse Server.",
"main": "./lib/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/netreconlab/parse-server-carekit.git"
},
"keywords": [
"parse",
"parse-server",
"carekit"
],
"author": "Corey Baker",
"license": "MIT",
"bugs": {
"url": "https://github.com/netreconlab/parse-server-carekit/issues"
},
"homepage": "https://github.com/netreconlab/parse-server-carekit#readme",
"files": [
"src",
"lib"
],
"dependencies": {
"parse-auditor": "netreconlab/parse-auditor#develop"
},
"devDependencies": {
"@babel/cli": "7.22.15",
"@babel/core": "7.22.20",
"@babel/eslint-parser": "7.22.15",
"@babel/preset-env": "7.22.20",
"@babel/preset-typescript": "7.23.0",
"@types/jasmine": "4.3.6",
"eslint": "8.50.0",
"eslint-plugin-flowtype": "8.0.3",
"jasmine": "5.1.0",
"madge": "6.1.0",
"nyc": "15.1.0",
"typescript": "5.2.2",
"parse-server": "6.3.0"
},
"scripts": {
"build": "babel src --out-dir lib --source-maps",
"build:watch": "babel src --out-dir lib --source-maps --watch",
"lint": "eslint '{src,spec}/**/*.js'",
"lint:fix": "eslint '{src,spec}/**/*.js' --fix",
"madge": "node_modules/.bin/madge ./src $npm_config_arg",
"madge:circular": "npm run madge --arg=--circular",
"test": "nyc --reporter=lcov jasmine",
"posttest": "nyc report --reporter=json",
"prepare": "npm run build && npm test",
"start": "node ./lib/index.js"
},
"engines": {
"node": ">=12.20.0"
}
}