-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.42 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
{
"name": "@hydrogenjs/gatekeeper",
"version": "0.4.0",
"description": "An authorization engine for FeathersJs.",
"scripts": {
"clean": "shx rm -rf build",
"lint": "eslint src",
"jest": "jest src",
"test": "npm run lint && npm run jest",
"babel": "babel src -d build --ignore node_modules,src/test,src/**/*.test.js",
"build": "npm run clean && npm run babel",
"prepublishOnly": "npm run build"
},
"main": "build/index.js",
"files": [
"build",
"AUTHORS",
"README.md",
"LICENSE",
"package.json"
],
"repository": {
"type": "git",
"url": "git+https://github.com/Lemonpeach/gatekeeper.git"
},
"license": "MPL-2.0",
"bugs": {
"url": "https://github.com/Lemonpeach/gatekeeper/issues"
},
"homepage": "https://github.com/Lemonpeach/gatekeeper#readme",
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.2.2",
"@babel/polyfill": "^7.2.5",
"@babel/preset-env": "^7.3.1",
"@feathersjs/errors": "^3.3.6",
"@feathersjs/feathers": "^3.3.1",
"babel-plugin-module-resolver": "^3.2.0",
"eslint": "^5.13.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-node": "^8.0.1",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-standard": "^4.0.0",
"jest": "^24.1.0",
"shx": "^0.3.2"
},
"dependencies": {
"dot-prop-immutable": "^1.5.0",
"lodash": "^4.17.11"
}
}