forked from inderpreetsingh/OGV-meteor
-
Notifications
You must be signed in to change notification settings - Fork 27
/
package.json
42 lines (42 loc) · 1.19 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
{
"name": "ogv",
"version": "1.0.0",
"description": "Online Geometry Viewer",
"devDependencies": {
"babel-eslint": "^6.1.2",
"eslint": "^3.19.0",
"eslint-config-airbnb": "^11.0.0",
"eslint-import-resolver-meteor": "^0.3.3",
"eslint-plugin-import": "^1.14.0",
"eslint-plugin-jsx-a11y": "^2.2.1",
"eslint-plugin-meteor": "^4.0.1",
"eslint-plugin-prettier": "^2.1.1",
"eslint-plugin-react": "^6.2.0",
"jsdoc": "^3.6.7",
"prettier": "^1.3.1"
},
"scripts": {
"start": "meteor --settings settings.json",
"lint": "eslint .",
"test": "eslint .",
"mocha-test": "meteor test --driver-package dispatch:mocha",
"build:linux": "./scripts/build_linux.sh",
"docs": "jsdoc -r -d private/docs/jsdoc imports client collections",
"precommit": "npm run lint"
},
"repository": {
"type": "git",
"url": "git+https://github.com/BRL-CAD/OGV-meteor.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/BRL-CAD/OGV-meteor/issues"
},
"homepage": "https://github.com/BRL-CAD/OGV-meteor#readme",
"dependencies": {
"@babel/runtime": "^7.14.5",
"bcrypt": "^5.0.0",
"meteor-husky": "^0.14.6"
}
}