-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.18 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
{
"name": "@luxuryescapes/lib-uri-templates",
"version": "3.0.0",
"description": "All our routes in a repo for profit",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"build": "tsc",
"ci": "yarn test && yarn lint && tsc",
"test": "mocha -r ts-node/register test/**/*.ts",
"lint": "eslint src test --ext .ts",
"lint:fix": "yarn run lint --fix",
"prepare": "yarn run build",
"prepublishOnly": "yarn test && yarn run lint",
"preversion": "yarn run lint",
"postversion": "git push && git push --tags"
},
"license": "MIT",
"files": [
"lib",
"src"
],
"dependencies": {
"uri-template-param-types": "^0.3.0",
"url-template": "^2.0.8"
},
"devDependencies": {
"@types/assert": "^1.5.2",
"@types/mocha": "^8.0.3",
"@types/node": "^14.11.7",
"@types/url-template": "^2.0.28",
"@typescript-eslint/eslint-plugin": "^4.4.0",
"@typescript-eslint/parser": "^4.4.0",
"assert": "^2.0.0",
"eslint": "^7.10.0",
"eslint-config-prettier": "^6.12.0",
"eslint-plugin-prettier": "^3.1.4",
"mocha": "^8.1.3",
"prettier": "^2.1.2",
"ts-node": "^9.0.0",
"typescript": "^4.3.4"
}
}