-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
95 lines (95 loc) · 2.68 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
{
"name": "@qiwi/security-context",
"version": "0.0.3",
"description": "Security context utils",
"main": "src/index.js",
"scripts": {
"jest": "jest -w 4",
"lint": "standard-flow src/**/*.js test/**/*.js",
"flow": "flow",
"test": "yarn lint && yarn flow && yarn jest",
"test_with_report": "npm test && yarn coveralls_push",
"flow_coverage": "flow-coverage-report -i 'src/**/*.js' -t html -t json -t text --threshold 90",
"build": "BABEL_ENV=production babel src --out-dir dist",
"coveralls_push": "cat ./coverage/lcov.info | coveralls",
"doc": "esdoc",
"docs": "yarn doc"
},
"repository": {
"type": "git",
"url": "https://github.com/qiwi/security-context.git"
},
"keywords": [
"security context",
"roles",
"permission",
"permission evaluator",
"acl"
],
"author": "Anton Golub <[email protected]>",
"license": "MIT",
"devDependencies": {
"@semantic-release/changelog": "^3.0.2",
"@semantic-release/commit-analyzer": "^6.1.0",
"@semantic-release/git": "7.0.7",
"@semantic-release/github": "5.2.8",
"@semantic-release/npm": "5.1.4",
"@semantic-release/release-notes-generator": "7.1.4",
"semantic-release": "^15.13.3",
"@babel/cli": "^7.2.3",
"@babel/core": "^7.2.2",
"@babel/plugin-external-helpers": "^7.2.0",
"@babel/plugin-proposal-class-properties": "^7.3.0",
"@babel/plugin-proposal-decorators": "^7.3.0",
"@babel/plugin-proposal-object-rest-spread": "^7.3.1",
"@babel/plugin-transform-flow-strip-types": "^7.2.3",
"@babel/plugin-transform-runtime": "^7.2.0",
"@babel/polyfill": "^7.2.5",
"@babel/preset-env": "^7.3.1",
"@babel/preset-flow": "^7.0.0",
"@babel/register": "^7.0.0",
"babel-preset-minify": "^0.5.0",
"coveralls": "^3.0.2",
"esdoc": "^1.1.0",
"esdoc-coverage-plugin": "^1.1.0",
"esdoc-ecmascript-proposal-plugin": "^1.0.0",
"esdoc-flow-type-plugin": "^1.1.0",
"esdoc-standard-plugin": "^1.0.0",
"flow-bin": "^0.92.0",
"flow-coverage-report": "^0.6.1",
"flow-remove-types": "^1.2.3",
"jest": "^24.0.0",
"lodash": "^4.17.11",
"standard-flow": "^1.0.0"
},
"jest": {
"collectCoverage": true,
"coveragePathIgnorePatterns": [
"<rootDir>/src/interface.js"
],
"collectCoverageFrom": [
"<rootDir>/src/**/*.js"
],
"testMatch": [
"<rootDir>/test/**/*.js"
]
},
"standard-flow": {
"parser": "babel-eslint",
"globals": [
"it",
"expect",
"describe"
],
"ignore": [],
"plugins": [
"flowtype"
],
"settings": {
"flowtype": {
"onlyFilesWithFlowAnnotation": true
}
}
},
"dependencies": {}
}