-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
44 lines (44 loc) · 1.26 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
{
"name": "@codesignal/meteor-protomongo",
"version": "3.2.0",
"description": "Extends meteor/mongo with handy async methods",
"main": "lib/mongo.js",
"types": "lib/mongo.d.ts",
"author": "CodeSignal",
"scripts": {
"eslint": "eslint --max-warnings 0 --ignore-path .gitignore --ext .js --ext .jsx src/",
"build": "npm run build:clean && npm run build:lib && cp -f src/mongo.d.ts lib/mongo.d.ts",
"prepublishOnly": "npm run build",
"build:clean": "rimraf lib",
"build:lib": "babel src -d lib"
},
"repository": {
"type": "git",
"url": "https://github.com/codesignal/meteor-protomongo"
},
"devDependencies": {
"@babel/cli": "^7.17.6",
"@babel/core": "^7.17.9",
"@babel/eslint-parser": "^7.17.0",
"@babel/plugin-transform-spread": "^7.16.7",
"@babel/preset-env": "^7.16.11",
"@types/meteor": "^2.9.6",
"babel-preset-minify": "^0.5.1",
"eslint": "^8.13.0",
"eslint-config-airbnb": "^19.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-react": "^7.29.4",
"rimraf": "^5.0.0"
},
"files": [
"/lib"
],
"license": "MIT",
"homepage": "https://github.com/CodeSignal/meteor-protomongo",
"keywords": [
"meteor",
"mongo",
"async"
]
}