-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 803 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 803 Bytes
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
{
"name": "requrl",
"version": "3.0.2",
"description": "Grab full URL from request",
"repository": "nuxt-contrib/requrl",
"license": "MIT",
"sideEffects": false,
"main": "dist/requrl.js",
"module": "dist/requrl.mjs",
"types": "dist/requrl.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "siroc build",
"dev": "ts-node ./demo.ts",
"lint": "eslint . --ext ts",
"prepublish": "yarn build",
"release": "yarn build && yarn test && standard-version && npm publish && git push --follow-tags",
"test": "yarn lint"
},
"devDependencies": {
"@nuxtjs/eslint-config-typescript": "latest",
"eslint": "latest",
"is-https": "latest",
"siroc": "latest",
"standard-version": "latest",
"ts-node": "latest",
"typescript": "latest"
}
}