-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.49 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
{
"name": "resource-access-list",
"version": "0.3.0",
"description": "This is a awesome project",
"main": "dist/index.js",
"scripts": {
"pretest": "standard",
"test": "mocha --compilers js:babel-register",
"build": "babel --optional runtime src -d dist",
"postbuild": "npm test -s",
"changelog": "github-changes -o ChopperLee2011 -r resource-access-list",
"check": "dependency-check package.json --entry src",
"prepublish": "npm run build -s",
"patch": "npm version patch && npm publish",
"minor": "npm version minor && npm publish",
"major": "npm version major && npm publish",
"postpublish": "git push origin master --follow-tags"
},
"author": {
"name": "chopperlee",
"email": "lihengpro@gmail.com"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/ChopperLee2011/resource-access-list.git"
},
"files": [
"dist"
],
"standard": {
"env": [
"node",
"es6",
"mocha"
],
"ignore": [
"dist"
]
},
"keywords": [
"loopback",
"role-based",
"acl"
],
"engines": {
"node": ">=6.10.0",
"npm": " >=3.10.10"
},
"devDependencies": {
"babel-cli": "^6.24.0",
"babel-core": "^6.24.0",
"babel-preset-latest": "^6.24.0",
"chai": "^3.5.0",
"dependency-check": "^2.8.0",
"github-changes": "^1.1.0",
"mocha": "^3.2.0",
"standard": "^10.0.1"
},
"dependencies": {
"http-errors": "^1.6.1",
"lodash": "^4.17.4"
}
}