-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
56 lines (56 loc) · 1.61 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
{
"name": "parse-server-any-analytics-adapter",
"version": "1.1.6",
"description": "Universal analytics adapter for Parse Server.",
"main": "./lib/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/netreconlab/parse-server-any-analytics-adapter.git"
},
"keywords": [
"parse",
"parse-server",
"analytics",
"analytics-adapter",
"any-analytics",
"agnostic-analytics"
],
"author": "Alyssa Donawa",
"license": "MIT",
"bugs": {
"url": "https://github.com/netreconlab/parse-server-any-analytics-adapter/issues"
},
"homepage": "https://github.com/netreconlab/parse-server-any-analytics-adapter#readme",
"files": [
"src",
"lib"
],
"dependencies": {
"analytics": "^0.8.9"
},
"devDependencies": {
"@babel/cli": "7.24.7",
"@babel/core": "7.24.7",
"@babel/eslint-parser": "7.24.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.5.3"
},
"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"
}
}