-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
48 lines (48 loc) · 1.53 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
{
"name": "shiro-trie",
"version": "0.4.10",
"description": "Check permissions using Shiro-like strings, put in a trie.",
"homepage": "https://github.com/entrecode/shiro-trie",
"main": "index.js",
"types": "index.d.ts",
"author": {
"name": "Ruben Deyhle",
"email": "deyhle@entrecode.de",
"url": "https://entrecode.de"
},
"repository": "https://github.com/entrecode/shiro-trie",
"license": "MIT",
"keywords": [
"shiro-trie",
"shiro",
"trie",
"authorization",
"permissions"
],
"dependencies": {},
"devDependencies": {
"browserify": "17.0.0",
"chai": "4.2.0",
"conventional-changelog-cli": "^2.1.1",
"coveralls": "3.1.0",
"istanbul": "0.4.5",
"karma": "5.2.3",
"karma-bamboo-reporter": "0.1.2",
"karma-chai-plugins": "0.9.0",
"karma-chrome-launcher": "3.1.0",
"karma-mocha": "2.0.1",
"karma-phantomjs-launcher": "1.0.4",
"mocha": "7.2.0",
"mocha-bamboo-reporter": "1.1.2",
"mocha-lcov-reporter": "1.3.0",
"phantomjs-prebuilt": "2.1.16"
},
"scripts": {
"test": "npm run-script test-backend && npm run-script test-browser",
"test-travis": "./node_modules/istanbul/lib/cli.js cover ./node_modules/mocha/bin/_mocha -- -R dot ./test/*",
"test-backend": "./node_modules/mocha/bin/mocha -R dot ./test/*",
"test-browser": "npm run-script build && ./node_modules/karma/bin/karma start",
"build": "browserify -x _ -r ./index.js -s shiroTrie -o ./dist/shiro-trie.js",
"changelog": "conventional-changelog -i CHANGELOG.md -s"
}
}