-
Notifications
You must be signed in to change notification settings - Fork 50
/
package.json
81 lines (81 loc) · 1.99 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
{
"name": "adonis-acl",
"version": "1.1.1",
"description": "Adonis ACL system",
"main": "src/Acl/index.js",
"directories": {
"test": "test"
},
"scripts": {
"pretest": "npm run test:cleanup && npm run lint",
"posttest": "npm run test:cleanup && npm run coverage",
"test:cleanup": "rm -rf test/database && rm -rf test/tmp",
"test:local": "NO_ANSI=false FORCE_COLOR=true DB=sqlite3 nyc node ./bin/index.js --local",
"test:win": "set NO_ANSI=false && set FORCE_COLOR=true && set DB=sqlite3 && nyc node ./bin/index.js --win",
"test": "npm run test:local",
"lint": "standard",
"lint:fix": "standard --fix",
"precommit": "npm run test && lint-staged",
"prepush": "npm run test && lint-staged",
"coverage": "nyc report --reporter=text-lcov | coveralls"
},
"lint-staged": {
"*.js": [
"npm run lint:fix",
"git add"
]
},
"author": "Evgeny Razumov (enniel)",
"license": "MIT",
"dependencies": {
"acler": "^1.0.0",
"lodash": "^4.17.4",
"node-exceptions": "^2.0.2"
},
"devDependencies": {
"@adonisjs/ace": "^4.0.7",
"@adonisjs/fold": "^4.0.5",
"@adonisjs/lucid": "^4.0.21",
"@adonisjs/sink": "^1.0.13",
"child_process": "^1.0.2",
"coveralls": "^3.0.0",
"dotenv": "^4.0.0",
"edge.js": "^1.1.3",
"husky": "^0.13.4",
"japa": "^1.0.5",
"japa-cli": "^1.0.1",
"lint-staged": "^4.0.0",
"mysql": "^2.13.0",
"nyc": "^11.3.0",
"pg": "^6.3.1",
"semver": "^5.3.0",
"sqlite3": "^4.0.2",
"standard": "^10.0.2",
"walk-sync": "^0.3.2"
},
"nyc": {
"include": [
"src",
"providers",
"commands"
]
},
"standard": {
"globals": [
"use",
"make"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/enniel/adonis-acl.git"
},
"keywords": [
"acl",
"adonis"
],
"bugs": {
"url": "https://github.com/enniel/adonis-acl/issues"
},
"homepage": "https://github.com/enniel/adonis-acl#readme"
}