-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
110 lines (110 loc) · 3.15 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
99
100
101
102
103
104
105
106
107
108
109
110
{
"name": "@ballistagroup/method-access-controller",
"version": "1.4.0-pre.0",
"description": "Access controller that determines whether given roles are allowed to invoke given methods on given classes.",
"repository": {
"type": "git",
"url": "https://github.com/ballistaGroup/method-access-controller"
},
"keywords": [
"acl",
"security",
"access control",
"authorization",
"rbac",
"instance-level security",
"application-level security"
],
"license": "MIT",
"engines": {
"node": ">=8.17.0"
},
"scripts": {
"build": "npm install && npm test",
"transpile": "run-s transpile-main transpile-test",
"clean": "rimraf dist docs coverage .nyc_output",
"prenuke": "npm run clean",
"nuke": "rimraf node_modules",
"transpile-main": "babel --delete-dir-on-start --verbose --out-dir dist/main --copy-files src/main",
"transpile-test": "babel --delete-dir-on-start --verbose --out-dir dist/test --copy-files src/test",
"unit-integration": "nyc --check-coverage -x 'dist/test' --exclude-after-remap false mocha 'dist/test/unit/**/*.spec.js' 'dist/test/integration/**/*.spec.js'",
"postunit-integration": "run-s report",
"integration": "nyc -x 'dist/test' --exclude-after-remap false mocha 'dist/test/integration/**/*.spec.js'",
"postintegration": "run-s report",
"i": "mocha 'src/test/integration/**/*.spec.js'",
"unit": "nyc -x 'dist/test' --exclude-after-remap false mocha 'dist/test/unit/**/*.spec.js'",
"postunit": "run-s report",
"u": "mocha 'src/test/unit/**/*.spec.js'",
"test": "run-s transpile unit-integration lint",
"report": "nyc report --reporter=html",
"cov": "open coverage/index.html",
"lint": "standard --verbose 'src/**/*.js'",
"format": "standard --fix 'src/**/*.js'",
"make-distribution": "run-s transpile doc lic",
"doc": "jsdoc --verbose -d docs -r -c jsdoc.json -R README.md src/main",
"lic": "node lic.js > LICENSE"
},
"files": [
"dist/",
"docs/",
"src/",
"index.js",
"README.md"
],
"publishConfig": {
"access": "public"
},
"dependencies": {
"@babel/polyfill": "7.8.7"
},
"devDependencies": {
"@babel/cli": "7.19.3",
"@babel/core": "7.9.6",
"@babel/plugin-proposal-optional-chaining": "7.9.0",
"@babel/preset-env": "7.9.6",
"@babel/register": "7.9.0",
"@babel/traverse": "7.9.6",
"@babel/types": "7.9.6",
"acorn": "7.2.0",
"babel-eslint": "10.1.0",
"chai": "4.2.0",
"copyfiles": "2.2.0",
"dirty-chai": "2.0.1",
"jsdoc": "3.6.11",
"lodash.template": "4.5.0",
"mocha": "7.1.2",
"npm-cli-login": "0.0.10",
"npm-run-all": "4.1.5",
"nyc": "15.0.1",
"rimraf": "3.0.2",
"standard": "14.3.3"
},
"babel": {
"sourceMaps": "both",
"presets": [
[
"@babel/preset-env",
{
"targets": {
"node": true
}
}
]
],
"plugins": [
[
"@babel/plugin-proposal-optional-chaining",
{
"loose": false
}
]
]
},
"standard": {
"parser": "babel-eslint"
},
"mocha": {
"colors": true,
"require": "@babel/register"
}
}