-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
69 lines (69 loc) · 1.58 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
{
"name": "adonis-url-signer",
"version": "1.0.2",
"description": "URL signing provider for Adonis.js",
"main": "index.js",
"scripts": {
"lint": "standard",
"lint:fix": "standard --fix",
"lint-staged": "npm run test:win && lint-staged",
"test:local": "NO_ANSI=false FORCE_COLOR=true nyc node bin/index.js",
"test:win": "set NO_ANSI=false && set FORCE_COLOR=true && nyc node bin/index.js",
"test": "npm run test:local",
"coverage": "nyc report --reporter=text-lcov | coveralls"
},
"devDependencies": {
"@adonisjs/fold": "^4.0.9",
"@adonisjs/framework": "^5.0.13",
"@adonisjs/sink": "^1.0.17",
"child_process": "^1.0.2",
"coveralls": "^3.0.3",
"husky": "^1.3.1",
"japa": "^2.0.7",
"lint-staged": "^8.1.5",
"nyc": "^13.3.0",
"semver": "^5.6.0",
"standard": "^12.0.1"
},
"nyc": {
"include": [
"src",
"providers"
]
},
"lint-staged": {
"*.js": [
"npm run lint:fix",
"git add"
]
},
"keywords": [
"adonisjs",
"adonis",
"adonis-framework",
"url-sign",
"node"
],
"standard": {
"globals": [
"use",
"make"
]
},
"author": "Kashyap Merai <kashyapk62@gmail.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/kamerk22/adonis-url-signer"
},
"bugs": {
"url": "https://github.com/kamerk22/adonis-url-signer/issues"
},
"homepage": "https://github.com/kamerk22/adonis-url-signer#readme",
"husky": {
"hooks": {
"pre-commit": "npm run lint-staged"
}
},
"dependencies": {}
}