-
-
Notifications
You must be signed in to change notification settings - Fork 101
/
package.json
98 lines (98 loc) · 3.05 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"name": "rbac",
"version": "6.0.0",
"description": "Hierarchical Role Based Access Control",
"author": {
"name": "Zlatko Fedor",
"email": "[email protected]",
"url": "http://www.goodmodule.com/"
},
"repository": {
"type": "git",
"url": "git://github.com/seeden/rbac.git"
},
"keywords": [
"role",
"permission",
"access",
"RBAC",
"hierarchical",
"privacy",
"mongoose",
"passport"
],
"private": false,
"license": "MIT",
"main": "./dist/index.js",
"engines": {
"node": ">= 6.1.0"
},
"scripts": {
"prepublish": "npm run build",
"test": "jest ./src/",
"test:coverage": "jest --coverage ./src/",
"test:watch": "jest --watch ./src/",
"doc": "babel-node ./node_modules/gulp/bin/gulp.js doc",
"docs:build": "documentation build src/** -f html -o docs",
"build": "babel ./src --out-dir ./dist --source-maps --copy-files",
"eslint": "node ./node_modules/eslint/bin/eslint.js --ext .js ."
},
"dependencies": {
"keymirror": "^0.1.1",
"lodash": "^4.17.14"
},
"devDependencies": {
"@babel/cli": "^7.5.0",
"@babel/core": "^7.5.4",
"@babel/node": "^7.5.0",
"@babel/plugin-transform-flow-strip-types": "^7.4.4",
"@babel/polyfill": "^7.4.4",
"@babel/preset-env": "^7.5.4",
"@babel/preset-react": "^7.0.0",
"@babel/preset-stage-1": "^7.0.0",
"@babel/register": "^7.4.4",
"@babel/plugin-proposal-class-properties": "^7.5.0",
"@babel/plugin-proposal-decorators": "^7.4.4",
"@babel/plugin-proposal-do-expressions": "^7.5.0",
"@babel/plugin-proposal-export-default-from": "^7.5.2",
"@babel/plugin-proposal-export-namespace-from": "^7.5.2",
"@babel/plugin-proposal-function-sent": "^7.5.0",
"@babel/plugin-proposal-json-strings": "^7.2.0",
"@babel/plugin-proposal-logical-assignment-operators": "^7.2.0",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.4.4",
"@babel/plugin-proposal-numeric-separator": "^7.2.0",
"@babel/plugin-proposal-optional-chaining": "^7.2.0",
"@babel/plugin-proposal-pipeline-operator": "^7.5.0",
"@babel/plugin-proposal-throw-expressions": "^7.2.0",
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@babel/plugin-syntax-import-meta": "^7.2.0",
"babelify": "git+https://github.com/ylemkimon/babelify.git#master",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^10.0.2",
"babel-jest": "^24.8.0",
"babel-loader": "^8.0.6",
"documentation": "^12.0.1",
"eslint": "^6.0.1",
"eslint-config-airbnb": "^17.1.1",
"eslint-loader": "^2.2.1",
"eslint-plugin-react": "^7.14.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-import": "^2.18.0",
"eslint-plugin-flowtype": "^3.11.1",
"gulp": "^4.0.2",
"gulp-babel": "^8.0.0",
"gulp-jsdoc3": "^2.0.0",
"gulp-util": "^3.0.8",
"jaguarjs-jsdoc": "^1.1.0",
"jsdoc": "^3.6.3",
"should": "^13.2.3",
"jest": "^24.8.0",
"jest-cli": "^24.8.0"
},
"bugs": {
"url": "https://github.com/seeden/rbac/issues"
},
"jest": {
"testEnvironment": "node"
}
}