-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
41 lines (41 loc) · 1019 Bytes
/
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
{
"name": "@ambassify/shiro",
"version": "1.1.6",
"description": "Shiro permission checks in Node.JS",
"main": "lib/index.js",
"browser": "build/index.js",
"engines": {
"node": "8.x.x"
},
"scripts": {
"build": "babel lib -d build",
"prepack": "npm run build",
"test": "npm run test:lint && npm run test:unit",
"test:lint": "eslint --fix .",
"test:unit": "nyc mocha --recursive"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ambassify/shiro.git"
},
"keywords": [
"shiro",
"apache",
"permissions"
],
"author": "Gert Sallaerts <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/ambassify/shiro/issues"
},
"homepage": "https://github.com/ambassify/shiro#readme",
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.2.2",
"@babel/preset-env": "^7.3.1",
"eslint": "^5.1.0",
"eslint-config-ambassify": "^1.2.0",
"mocha": "^5.2.0",
"nyc": "^12.0.2"
}
}