-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.57 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-hipaa-dashboard",
"version": "1.1.0",
"description": "The Parse-HIPAA Dashboard.",
"main": "./lib/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/netreconlab/parse-hipaa-dashboard.git"
},
"keywords": [
"parse",
"parse-server",
"parse-hipaa",
"dashboard"
],
"author": "Corey Baker",
"license": "MIT",
"bugs": {
"url": "https://github.com/netreconlab/parse-hipaa-dashboard/issues"
},
"homepage": "https://github.com/netreconlab/parse-hipaa-dashboard#readme",
"files": [
"src",
"lib"
],
"dependencies": {
"parse-dashboard": "6.0.0"
},
"devDependencies": {
"@babel/cli": "7.25.7",
"@babel/core": "7.25.7",
"@babel/eslint-parser": "7.25.7",
"@babel/preset-env": "^7.16.11",
"@babel/preset-typescript": "7.24.7",
"@types/jasmine": "5.1.4",
"eslint": "8.57.0",
"eslint-plugin-flowtype": "8.0.3",
"jasmine": "^5.0.0",
"madge": "7.0.0",
"nyc": "17.0.0",
"typescript": "5.6.2"
},
"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": ">=14.20.1"
}
}